Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

⬆️ Update qodana to the v2024.1.6 #312

Merged
merged 1 commit into from
Jun 3, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions GRADLE.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file:

```groovy
plugins {
id "org.jetbrains.qodana" version "2024.1.5"
id "org.jetbrains.qodana" version "2024.1.6"
}
```

- Kotlin DSL – `build.gradle.kts`

```kotlin
plugins {
id("org.jetbrains.qodana") version "2024.1.5"
id("org.jetbrains.qodana") version "2024.1.6"
}
```

Expand Down Expand Up @@ -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.5"
id "org.jetbrains.qodana" version "2024.1.6"
}

qodana {
Expand All @@ -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.5"
id("org.jetbrains.qodana") version "2024.1.6"
}

qodana {
Expand Down
14 changes: 7 additions & 7 deletions common/cli.json
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
{
"version": "2024.1.5",
"version": "2024.1.6",
"checksum": {
"windows_x86_64": "cdb4bfb6e5fc5b37e14cc50fe9122847d008607fd0f27204340878bc15129e8a",
"linux_arm64": "c8468d63f68db9ee21cb78ca53a583743748dc236472e7e903a2bed50ed5b1e6",
"darwin_arm64": "3e6ac933d08d5e640ca89252808d661054f6b7c0d5749cb46f618165154fd809",
"darwin_x86_64": "9ed82db050f950bbeb992310aabd6dfac0cd6e5b65724d6ff2afa30e28b890bf",
"windows_arm64": "f435008eb63582744f21d0087c8f84442d911606d45fccb7bfd6ee9a8045ca28",
"linux_x86_64": "6a2c10b77a275ebd379acc27281de6cbf90402aab7ca6e1cc76ad083b7f55e99"
"windows_x86_64": "1701c23a4ef7dcfbeb3563a4a3f0d1681bbf25dad34938783d755833fff90276",
"linux_arm64": "8e4f61b30dcebba06923828aef62329acf8f0caa49f2159689dce277c55466bd",
"darwin_arm64": "40aa43ab15f3979a7a506dee18eaa7f57cc1c634a8347fd2cf3096750b082b2e",
"darwin_x86_64": "c2e9bacfb842a3a0890ce81d64d93040dfba996f5cd9df73335ef5448e5c86a6",
"windows_arm64": "0cfb3b9912aafda00ce2d91e8d778f8e5d71e130a7b5c3fbaf71926d0bff7c70",
"linux_x86_64": "6252d97a6e9f674863f3dcc43bb84c48c71db88400c28036738959443591fea4"
}
}
6 changes: 3 additions & 3 deletions orb/commands/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,12 +53,12 @@ steps:
name: Qodana Scan
command: |
set -e
QODANA_SHA_256=a0d220cc09e95720143cdac1e51ddb7b4870b23507137f5138d78010ed4f633a
CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.5
QODANA_SHA_256=597d870f4c747d04d0280956306e2e7b9e003662d4600d93c1b69fcaffc2bb7b
CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.1.6
mkdir -p $CLI_DIRECTORY
if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then
curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \
v2024.1.5 $CLI_DIRECTORY \
v2024.1.6 $CLI_DIRECTORY \
1> /dev/null
fi
echo "$QODANA_SHA_256 $CLI_DIRECTORY/qodana" | sha256sum -c
Expand Down
2 changes: 1 addition & 1 deletion orb/examples/scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ description: >
usage:
version: 2.1
orbs:
qodana: jetbrains/qodana@2024.1.5
qodana: jetbrains/qodana@2024.1.6
jobs:
code-quality:
machine:
Expand Down
4 changes: 2 additions & 2 deletions scan/__tests__/main.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ test('validate branch names', () => {
'refs/heads/main',
'refs/tags/v1.0.0',
'refs/pull/123/merge',
'v2024.1.5'
'v2024.1.6'
]
for (let branchName of validBranchNames) {
expect(validateBranchName(branchName)).toEqual(branchName)
Expand Down Expand Up @@ -315,7 +315,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.5
uses: JetBrains/qodana-action@v2024.1.6
with:
upload-result: true
\`\`\`
Expand Down
14 changes: 7 additions & 7 deletions scan/dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -24193,14 +24193,14 @@ var require_io = __commonJS({
var version2, checksum;
var init_cli = __esm({
"../common/cli.json"() {
version2 = "2024.1.5";
version2 = "2024.1.6";
checksum = {
windows_x86_64: "cdb4bfb6e5fc5b37e14cc50fe9122847d008607fd0f27204340878bc15129e8a",
linux_arm64: "c8468d63f68db9ee21cb78ca53a583743748dc236472e7e903a2bed50ed5b1e6",
darwin_arm64: "3e6ac933d08d5e640ca89252808d661054f6b7c0d5749cb46f618165154fd809",
darwin_x86_64: "9ed82db050f950bbeb992310aabd6dfac0cd6e5b65724d6ff2afa30e28b890bf",
windows_arm64: "f435008eb63582744f21d0087c8f84442d911606d45fccb7bfd6ee9a8045ca28",
linux_x86_64: "6a2c10b77a275ebd379acc27281de6cbf90402aab7ca6e1cc76ad083b7f55e99"
windows_x86_64: "1701c23a4ef7dcfbeb3563a4a3f0d1681bbf25dad34938783d755833fff90276",
linux_arm64: "8e4f61b30dcebba06923828aef62329acf8f0caa49f2159689dce277c55466bd",
darwin_arm64: "40aa43ab15f3979a7a506dee18eaa7f57cc1c634a8347fd2cf3096750b082b2e",
darwin_x86_64: "c2e9bacfb842a3a0890ce81d64d93040dfba996f5cd9df73335ef5448e5c86a6",
windows_arm64: "0cfb3b9912aafda00ce2d91e8d778f8e5d71e130a7b5c3fbaf71926d0bff7c70",
linux_x86_64: "6252d97a6e9f674863f3dcc43bb84c48c71db88400c28036738959443591fea4"
};
}
});
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/org/jetbrains/qodana/Qodana.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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.5"
private const val VERSION = "2024.1.6"
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 {
Expand Down
14 changes: 7 additions & 7 deletions vsts/QodanaScan/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -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.5";
version = "2024.1.6";
checksum = {
windows_x86_64: "cdb4bfb6e5fc5b37e14cc50fe9122847d008607fd0f27204340878bc15129e8a",
linux_arm64: "c8468d63f68db9ee21cb78ca53a583743748dc236472e7e903a2bed50ed5b1e6",
darwin_arm64: "3e6ac933d08d5e640ca89252808d661054f6b7c0d5749cb46f618165154fd809",
darwin_x86_64: "9ed82db050f950bbeb992310aabd6dfac0cd6e5b65724d6ff2afa30e28b890bf",
windows_arm64: "f435008eb63582744f21d0087c8f84442d911606d45fccb7bfd6ee9a8045ca28",
linux_x86_64: "6a2c10b77a275ebd379acc27281de6cbf90402aab7ca6e1cc76ad083b7f55e99"
windows_x86_64: "1701c23a4ef7dcfbeb3563a4a3f0d1681bbf25dad34938783d755833fff90276",
linux_arm64: "8e4f61b30dcebba06923828aef62329acf8f0caa49f2159689dce277c55466bd",
darwin_arm64: "40aa43ab15f3979a7a506dee18eaa7f57cc1c634a8347fd2cf3096750b082b2e",
darwin_x86_64: "c2e9bacfb842a3a0890ce81d64d93040dfba996f5cd9df73335ef5448e5c86a6",
windows_arm64: "0cfb3b9912aafda00ce2d91e8d778f8e5d71e130a7b5c3fbaf71926d0bff7c70",
linux_x86_64: "6252d97a6e9f674863f3dcc43bb84c48c71db88400c28036738959443591fea4"
};
}
});
Expand Down
2 changes: 1 addition & 1 deletion vsts/QodanaScan/task.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"version": {
"Major": 2024,
"Minor": 1,
"Patch": 5
"Patch": 6
},
"instanceNameFormat": "Qodana Scan",
"inputs": [
Expand Down
2 changes: 1 addition & 1 deletion vsts/vss-extension.dev.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "qodana-dev",
"name": "Qodana (Dev)",
"version": "2024.1.5",
"version": "2024.1.6",
"publisher": "JetBrains",
"targets": [
{
Expand Down
2 changes: 1 addition & 1 deletion vsts/vss-extension.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifestVersion": 1,
"id": "qodana",
"name": "Qodana",
"version": "2024.1.5",
"version": "2024.1.6",
"public": true,
"publisher": "JetBrains",
"targets": [
Expand Down
Loading