From 2249826376f0d0c99f82dd0f5504a46ed1787584 Mon Sep 17 00:00:00 2001 From: qodana-bot Date: Thu, 2 May 2024 14:51:31 +0000 Subject: [PATCH] :arrow_up: Update `qodana` to `v2024.1.3` --- GRADLE.md | 8 ++++---- common/cli.json | 14 +++++++------- orb/commands/scan.yml | 6 +++--- orb/examples/scan.yml | 2 +- scan/__tests__/main.test.ts | 2 +- scan/dist/index.js | 14 +++++++------- src/main/kotlin/org/jetbrains/qodana/Qodana.kt | 2 +- vsts/QodanaScan/index.js | 14 +++++++------- vsts/QodanaScan/task.json | 2 +- vsts/vss-extension.dev.json | 2 +- vsts/vss-extension.json | 2 +- 11 files changed, 34 insertions(+), 34 deletions(-) diff --git a/GRADLE.md b/GRADLE.md index c4d1967c..fe0ad2d0 100644 --- a/GRADLE.md +++ b/GRADLE.md @@ -23,7 +23,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```groovy plugins { - id "org.jetbrains.qodana" version "2024.1.2" + id "org.jetbrains.qodana" version "2024.1.3" } ``` @@ -31,7 +31,7 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file: ```kotlin plugins { - id("org.jetbrains.qodana") version "2024.1.2" + id("org.jetbrains.qodana") version "2024.1.3" } ``` @@ -64,7 +64,7 @@ Add this to your Gradle configuration file: ```groovy plugins { // applies Gradle Qodana plugin to use it in project - id "org.jetbrains.qodana" version "2024.1.2" + id "org.jetbrains.qodana" version "2024.1.3" } qodana { @@ -82,7 +82,7 @@ Add this to your Gradle configuration file: ```kotlin plugins { // applies Gradle Qodana plugin to use it in project - id("org.jetbrains.qodana") version "2024.1.2" + id("org.jetbrains.qodana") version "2024.1.3" } qodana { diff --git a/common/cli.json b/common/cli.json index af6ea165..1db61b4d 100644 --- a/common/cli.json +++ b/common/cli.json @@ -1,11 +1,11 @@ { - "version": "2024.1.2", + "version": "2024.1.3", "checksum": { - "windows_x86_64": "56a100c68e5f7a83e4ed9e0d1f7e95eb948d69a4c2501c57f2b9e1a767f72de8", - "linux_arm64": "8e1787f802ba7d35381467e66edd5a330017111011b03e7f3549d5f51641b9d2", - "darwin_arm64": "bd19406b2368c4db96ffc69edb475a92b4432d2cb90b51431c19921b192ce21f", - "darwin_x86_64": "dcd8ff47168e5536ac6bc2923280df408f024f3066c9cbcd1c7787e7124b695f", - "windows_arm64": "e0bd17eb1760c332bf0b85d880bf1375f90db60abbe20ccd98df7066772f7903", - "linux_x86_64": "85dfee4e9840ec34193f0944809fc388c69c7d2a5aed8e0fc94e49dc019a8db2" + "windows_x86_64": "a73b5fdc214a68f10cb26fcda497528f420b6df2e66a1b3576d57b317efc1c45", + "linux_arm64": "cfc9d0cff3de11089ab4336fd2da3177d41daf56e9b3bdc133a3372cb5ee0fc2", + "darwin_arm64": "6fca9c12ee4668e0a144a9bbcb23b2962d1938e883715b25bc0d0bdcd2c9ec1a", + "darwin_x86_64": "291c3623d07baede4fa515dfa051dfcfac688e92118f9ea7c7f3be77c565c70f", + "windows_arm64": "00616c53b65dc9f9e75fd757b36dc066883e6e56bedff676f8f66b37fbb57fe4", + "linux_x86_64": "785c2dc79461274258c42f70c189edafaea899a1dd7af0dc3c5eb06077fb93e8" } } \ No newline at end of file diff --git a/orb/commands/scan.yml b/orb/commands/scan.yml index 28e935f1..0aa2e08f 100644 --- a/orb/commands/scan.yml +++ b/orb/commands/scan.yml @@ -53,12 +53,12 @@ steps: name: Qodana Scan command: | set -e - QODANA_SHA_256=9832a15cee53a7c990d24b4a352fb5d744272e72113df0874e970f4a6cf9bc9c - CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.2 + QODANA_SHA_256=bbcf2ef8c9b9f74d0668bec5a45819eed723fe1a862de0ffb4601b164cec8ef7 + CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.3 mkdir -p $CLI_DIRECTORY if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \ - v2024.1.2 $CLI_DIRECTORY \ + v2024.1.3 $CLI_DIRECTORY \ 1> /dev/null fi echo "$QODANA_SHA_256 $CLI_DIRECTORY/qodana" | sha256sum -c diff --git a/orb/examples/scan.yml b/orb/examples/scan.yml index 80a31ad1..ea8916f8 100755 --- a/orb/examples/scan.yml +++ b/orb/examples/scan.yml @@ -3,7 +3,7 @@ description: > usage: version: 2.1 orbs: - qodana: jetbrains/qodana@2024.1.2 + qodana: jetbrains/qodana@2024.1.3 jobs: code-quality: machine: diff --git a/scan/__tests__/main.test.ts b/scan/__tests__/main.test.ts index aada0aa6..e787b547 100644 --- a/scan/__tests__/main.test.ts +++ b/scan/__tests__/main.test.ts @@ -300,7 +300,7 @@ To get \`*.log\` files or any other Qodana artifacts, run the action with \`uplo so that the action will upload the files as the job artifacts: \`\`\`yaml - name: 'Qodana Scan' - uses: JetBrains/qodana-action@v2024.1.2 + uses: JetBrains/qodana-action@v2024.1.3 with: upload-result: true \`\`\` diff --git a/scan/dist/index.js b/scan/dist/index.js index fb882e22..239beec3 100644 --- a/scan/dist/index.js +++ b/scan/dist/index.js @@ -24276,14 +24276,14 @@ var require_io = __commonJS({ var version2, checksum; var init_cli = __esm({ "../common/cli.json"() { - version2 = "2024.1.2"; + version2 = "2024.1.3"; checksum = { - windows_x86_64: "56a100c68e5f7a83e4ed9e0d1f7e95eb948d69a4c2501c57f2b9e1a767f72de8", - linux_arm64: "8e1787f802ba7d35381467e66edd5a330017111011b03e7f3549d5f51641b9d2", - darwin_arm64: "bd19406b2368c4db96ffc69edb475a92b4432d2cb90b51431c19921b192ce21f", - darwin_x86_64: "dcd8ff47168e5536ac6bc2923280df408f024f3066c9cbcd1c7787e7124b695f", - windows_arm64: "e0bd17eb1760c332bf0b85d880bf1375f90db60abbe20ccd98df7066772f7903", - linux_x86_64: "85dfee4e9840ec34193f0944809fc388c69c7d2a5aed8e0fc94e49dc019a8db2" + windows_x86_64: "a73b5fdc214a68f10cb26fcda497528f420b6df2e66a1b3576d57b317efc1c45", + linux_arm64: "cfc9d0cff3de11089ab4336fd2da3177d41daf56e9b3bdc133a3372cb5ee0fc2", + darwin_arm64: "6fca9c12ee4668e0a144a9bbcb23b2962d1938e883715b25bc0d0bdcd2c9ec1a", + darwin_x86_64: "291c3623d07baede4fa515dfa051dfcfac688e92118f9ea7c7f3be77c565c70f", + windows_arm64: "00616c53b65dc9f9e75fd757b36dc066883e6e56bedff676f8f66b37fbb57fe4", + linux_x86_64: "785c2dc79461274258c42f70c189edafaea899a1dd7af0dc3c5eb06077fb93e8" }; } }); diff --git a/src/main/kotlin/org/jetbrains/qodana/Qodana.kt b/src/main/kotlin/org/jetbrains/qodana/Qodana.kt index b6465bb3..252c795f 100644 --- a/src/main/kotlin/org/jetbrains/qodana/Qodana.kt +++ b/src/main/kotlin/org/jetbrains/qodana/Qodana.kt @@ -14,7 +14,7 @@ import java.nio.file.attribute.PosixFilePermission class Installer { val log: Logger = org.gradle.api.logging.Logging.getLogger(Installer::class.java) companion object { - private const val VERSION = "2024.1.2" + private const val VERSION = "2024.1.3" private const val RELEASE_DOWNLOAD_URL = "https://github.com/JetBrains/qodana-cli/releases/download/v%s/qodana_%s_%s" fun getQodanaUrl(platform: String = getPlatformName(), arch: String = getArchName(), version: String = VERSION): String { diff --git a/vsts/QodanaScan/index.js b/vsts/QodanaScan/index.js index 3a8b375f..394f8ac1 100644 --- a/vsts/QodanaScan/index.js +++ b/vsts/QodanaScan/index.js @@ -37,14 +37,14 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru var version, checksum; var init_cli = __esm({ "../common/cli.json"() { - version = "2024.1.2"; + version = "2024.1.3"; checksum = { - windows_x86_64: "56a100c68e5f7a83e4ed9e0d1f7e95eb948d69a4c2501c57f2b9e1a767f72de8", - linux_arm64: "8e1787f802ba7d35381467e66edd5a330017111011b03e7f3549d5f51641b9d2", - darwin_arm64: "bd19406b2368c4db96ffc69edb475a92b4432d2cb90b51431c19921b192ce21f", - darwin_x86_64: "dcd8ff47168e5536ac6bc2923280df408f024f3066c9cbcd1c7787e7124b695f", - windows_arm64: "e0bd17eb1760c332bf0b85d880bf1375f90db60abbe20ccd98df7066772f7903", - linux_x86_64: "85dfee4e9840ec34193f0944809fc388c69c7d2a5aed8e0fc94e49dc019a8db2" + windows_x86_64: "a73b5fdc214a68f10cb26fcda497528f420b6df2e66a1b3576d57b317efc1c45", + linux_arm64: "cfc9d0cff3de11089ab4336fd2da3177d41daf56e9b3bdc133a3372cb5ee0fc2", + darwin_arm64: "6fca9c12ee4668e0a144a9bbcb23b2962d1938e883715b25bc0d0bdcd2c9ec1a", + darwin_x86_64: "291c3623d07baede4fa515dfa051dfcfac688e92118f9ea7c7f3be77c565c70f", + windows_arm64: "00616c53b65dc9f9e75fd757b36dc066883e6e56bedff676f8f66b37fbb57fe4", + linux_x86_64: "785c2dc79461274258c42f70c189edafaea899a1dd7af0dc3c5eb06077fb93e8" }; } }); diff --git a/vsts/QodanaScan/task.json b/vsts/QodanaScan/task.json index 8181b57a..4704ea7b 100644 --- a/vsts/QodanaScan/task.json +++ b/vsts/QodanaScan/task.json @@ -10,7 +10,7 @@ "version": { "Major": 2024, "Minor": 1, - "Patch": 2 + "Patch": 3 }, "instanceNameFormat": "Qodana Scan", "inputs": [ diff --git a/vsts/vss-extension.dev.json b/vsts/vss-extension.dev.json index dc944c86..0657be0b 100644 --- a/vsts/vss-extension.dev.json +++ b/vsts/vss-extension.dev.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "qodana-dev", "name": "Qodana (Dev)", - "version": "2024.1.2", + "version": "2024.1.3", "publisher": "JetBrains", "targets": [ { diff --git a/vsts/vss-extension.json b/vsts/vss-extension.json index 2957d2dc..85b31214 100644 --- a/vsts/vss-extension.json +++ b/vsts/vss-extension.json @@ -2,7 +2,7 @@ "manifestVersion": 1, "id": "qodana", "name": "Qodana", - "version": "2024.1.2", + "version": "2024.1.3", "public": true, "publisher": "JetBrains", "targets": [