Skip to content

Commit 8354bf0

Browse files
committed
🧱 Prepare for .0.3 release
1 parent b71ab22 commit 8354bf0

File tree

6 files changed

+9
-9
lines changed

6 files changed

+9
-9
lines changed

common/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qodana/ci-common",
3-
"version": "1.0.2",
3+
"version": "1.0.0",
44
"description": "Common code for Qodana Scan GitHub action and Qodana Azure Pipelines extension.",
55
"main": "qodana.js",
66
"license": "Apache-2.0",

scan/dist/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1921,7 +1921,7 @@ function getQodanaScanArgs(args, resultsDir, cacheDir, env = `cli`) {
19211921
var VERSION, EXECUTABLE, FAIL_THRESHOLD_OUTPUT, QODANA_SARIF_NAME, QodanaExitCode;
19221922
var init_qodana = __esm({
19231923
"../common/qodana.ts"() {
1924-
VERSION = "1.0.2";
1924+
VERSION = "1.0.3";
19251925
EXECUTABLE = "qodana";
19261926
FAIL_THRESHOLD_OUTPUT = "The number of problems exceeds the failThreshold";
19271927
QODANA_SARIF_NAME = "qodana.sarif.json";
@@ -68158,7 +68158,7 @@ var require_utils5 = __commonJS({
6815868158
__name(getDeprecatedInputs, "getDeprecatedInputs");
6815968159
function getInputs() {
6816068160
return {
68161-
args: getDeprecatedInputs(core2.getInput("args").split(",")),
68161+
args: getDeprecatedInputs(core2.getInput("args").split(",").map((arg) => arg.trim())),
6816268162
resultsDir: core2.getInput("results-dir"),
6816368163
cacheDir: core2.getInput("cache-dir"),
6816468164
additionalCacheHash: core2.getInput("additional-cache-hash"),

scan/package-lock.json

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scan/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qodana/action",
3-
"version": "5.0.2",
3+
"version": "1.0.0",
44
"description": "Qodana is a code quality monitoring tool that identifies bugs, duplications, and imperfections.",
55
"main": "lib/main.js",
66
"scripts": {

vsts/QodanaScan/index.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ function getQodanaScanArgs(args, resultsDir, cacheDir, env = `cli`) {
101101
var VERSION, EXECUTABLE, FAIL_THRESHOLD_OUTPUT, QODANA_SARIF_NAME, QodanaExitCode;
102102
var init_qodana = __esm({
103103
"../common/qodana.ts"() {
104-
VERSION = "1.0.2";
104+
VERSION = "1.0.3";
105105
EXECUTABLE = "qodana";
106106
FAIL_THRESHOLD_OUTPUT = "The number of problems exceeds the failThreshold";
107107
QODANA_SARIF_NAME = "qodana.sarif.json";
@@ -4359,7 +4359,7 @@ var require_utils2 = __commonJS({
43594359
function getInputs() {
43604360
const home = path.join(process.env["AGENT_TEMPDIRECTORY"], "qodana");
43614361
return {
4362-
args: (tl2.getInput("args", false) || "").split(","),
4362+
args: (tl2.getInput("args", false) || "").split(",").map((arg) => arg.trim()),
43634363
resultsDir: tl2.getInput("resultsDir", false) || path.join(home, "results"),
43644364
cacheDir: tl2.getInput("cacheDir", false) || path.join(home, "cache"),
43654365
uploadResult: tl2.getBoolInput("uploadResult", false) || true,

vsts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@qodana/vsts",
3-
"version": "1.0.2",
3+
"version": "1.0.0",
44
"description": "Qodana for Azure Pipelines extension",
55
"main": "azure.js",
66
"scripts": {

0 commit comments

Comments
 (0)