8000 :arrow_up: Update `qodana` to `v2024.3.2` · JetBrains/qodana-action@79719b7 · GitHub
[go: up one dir, main page]

Skip to content

Commit 79719b7

Browse files
⬆️ Update qodana to v2024.3.2
Co-authored-by: brichbash <74328414+brichbash@users.noreply.github.com>
1 parent 383daee commit 79719b7

File tree

18 files changed

+65
-57
lines changed

18 files changed

+65
-57
lines changed

.github/workflows/node.yml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -102,34 +102,34 @@ jobs:
102102
include:
103103
- directory: 'tests/dotnet'
104104
os: 'ubuntu-latest'
105-
arguments: '-l,jetbrains/qodana-cdnet:2024.2-eap'
105+
arguments: '-l,jetbrains/qodana-cdnet:2024.3-eap'
106106
pr: 'false' # TODO: add true when pr-mode is available for dotnet-community
107107
- directory: 'tests/cpp'
108-
arguments: '-l,jetbrains/qodana-clang:2024.2-eap'
108+
arguments: '-l,jetbrains/qodana-clang:2024.3-eap'
109109
os: 'ubuntu-latest'
110110
pr: 'false'
111111
- directory: 'tests/java'
112-
arguments: '-l,jetbrains/qodana-jvm-community:2024.2'
112+
arguments: '-l,jetbrains/qodana-jvm-community:2024.3'
113113
os: 'ubuntu-latest'
114114
pr: 'true'
115115
- directory: 'tests/java'
116-
arguments: '-l,jetbrains/qodana-jvm-community:2024.2'
116+
arguments: '-l,jetbrains/qodana-jvm-community:2024.3'
117117
os: 'ubuntu-latest'
118118
pr: 'false'
119119
- directory: 'tests/java'
120-
arguments: '-l,jetbrains/qodana-jvm-android:2024.2'
120+
arguments: '-l,jetbrains/qodana-jvm-android:2024.3'
121121
os: 'ubuntu-latest'
122122
pr: 'true'
123123
- directory: 'tests/java'
124-
arguments: '-l,jetbrains/qodana-jvm-android:2024.2'
124+
arguments: '-l,jetbrains/qodana-jvm-android:2024.3'
125125
os: 'ubuntu-latest'
126126
pr: 'false'
127127
- directory: 'tests/py_error'
128-
arguments: '-l,jetbrains/qodana-python-community:2024.2'
128+
arguments: '-l,jetbrains/qodana-python-community:2024.3'
129129
os: 'ubuntu-latest'
130130
pr: 'true'
131131
- directory: 'tests/py_error'
132-
arguments: '-l,jetbrains/qodana-python-community:2024.2'
132+
arguments: '-l,jetbrains/qodana-python-community:2024.3'
133133
os: 'ubuntu-latest'
134134
pr: 'false'
135135
- directory: 'tests/dotnet'

CONTRIBUTING.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ Apply Gradle Qodana Plugin with snapshot version in Gradle configuration file an
134134

135135
```groovy
136136
plugins {
137-
id "org.jetbrains.qodana" version "2024.2.0-SNAPSHOT"
137+
id "org.jetbrains.qodana" version "2024.3.0-SNAPSHOT"
138138
}
139139
140140
qodana {
@@ -145,7 +145,7 @@ Apply Gradle Qodana Plugin with snapshot version in Gradle configuration file an
145145

146146
```kotlin
147147
plugins {
148-
id("org.jetbrains.qodana") version "2024.2.0-SNAPSHOT"
148+
id("org.jetbrains.qodana") version "2024.3.0-SNAPSHOT"
149149
}
150150

151151
qodana {

GRADLE.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,15 @@ Apply Gradle plugin `org.jetbrains.qodana` in the Gradle configuration file:
2323
2424
```groovy
2525
plugins {
26-
id "org.jetbrains.qodana" version "2024.2.6"
26+
id "org.jetbrains.qodana" version "2024.3.2"
2727
}
2828
```
2929
3030
- Kotlin DSL – `build.gradle.kts`
3131
3232
```kotlin
3333
plugins {
34-
id("org.jetbrains.qodana") version "2024.2.6"
34+
id("org.jetbrains.qodana") version "2024.3.2"
3535
}
3636
```
3737
@@ -64,7 +64,7 @@ Add this to your Gradle configuration file:
6464
```groovy
6565
plugins {
6666
// applies Gradle Qodana plugin to use it in project
67-
id "org.jetbrains.qodana" version "2024.2.6"
67+
id "org.jetbrains.qodana" version "2024.3.2"
6868
}
6969
7070
qodana {
@@ -82,7 +82,7 @@ Add this to your Gradle configuration file:
8282
```kotlin
8383
plugins {
8484
// applies Gradle Qodana plugin to use it in project
85-
id("org.jetbrains.qodana") version "2024.2.6"
85+
id("org.jetbrains.qodana") version "2024.3.2"
8686
}
8787
8888
qodana {

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line chan 10000 ge
@@ -53,7 +53,7 @@ jobs:
5353
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
5454
fetch-depth: 0 # a full history is required for pull request analysis
5555
- name: 'Qodana Scan'
56-
uses: JetBrains/qodana-action@v2024.2
56+
uses: JetBrains/qodana-action@v2024.3
5757
env:
5858
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} # read the steps about it below
5959
```
@@ -96,7 +96,7 @@ Example configuration:
9696

9797
```yaml
9898
- name: Qodana Scan
99-
uses: JetBrains/qodana-action@v2024.2
99+
uses: JetBrains/qodana-action@v2024.3
100100
with:
101101
pr-mode: false
102102
args: --apply-fixes
@@ -136,7 +136,7 @@ jobs:
136136
ref: ${{ github.event.pull_request.head.sha }}
137137
fetch-depth: 0
138138
- name: 'Qodana Scan'
139-
uses: JetBrains/qodana-action@v2024.2
139+
uses: JetBrains/qodana-action@v2024.3
140140
with:
141141
args: --cleanup
142142
- run: |
@@ -272,8 +272,8 @@ with:
272272
| `artifact-name` | Specify Qodana results artifact name, used for results uploading. Optional. | `qodana-report` |
273273
| `cache-dir` | Directory to store Qodana cache. Optional. | `${{ runner.temp }}/qodana/caches` |
274274
| `use-caches` | Utilize [GitHub caches](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#usage-limits-and-eviction-policy) for Qodana runs. Optional. | `true` |
275-
| `primary-cache-key` | Set [the primary cache key](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key). Optional. | `qodana-2024.2-${{ github.ref }}-${{ github.sha }}` |
276-
| `additional-cache-key` | Set [the additional cache key](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key). Optional. | `qodana-2024.2-${{ github.ref }}` |
275+
| `primary-cache-key` | Set [the primary cache key](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key). Optional. | `qodana-2024.3-${{ github.ref }}-${{ github.sha }}` |
276+
| `additional-cache-key` | Set [the additional cache key](https://docs.github.com/en/actions/using-workflows/caching-dependencies-to-speed-up-workflows#matching-a-cache-key). Optional. | `qodana-2024.3-${{ github.ref }}` |
277277
| `cache-default-branch-only` | Upload cache for the default branch only. Optional. | `false` |
278278
| `use-annotations` | Use annotation to mark the results in the GitHub user interface. Optional. | `true` |
279279
| `pr-mode` | Analyze ONLY changed files in a pull request. Optional. | `true` |

action.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ inputs:
2424
primary-cache-key:
2525
description: 'Set the primary cache key'
2626
required: false
27-
default: "qodana-2024.2-${{ github.ref }}-${{ github.sha }}"
27+
default: "qodana-2024.3-${{ github.ref }}-${{ github.sha }}"
2828
additional-cache-key:
2929
description: 'Set the additional cache key'
3030
required: false
31-
default: "qodana-2024.2-${{ github.ref }}"
31+
default: "qodana-2024.3-${{ github.ref }}"
3232
cache-default-branch-only:
3333
description: 'Upload cache for the default branch only'
3434
required: false

common/cli.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
{
2-
"version": "2024.2.6",
2+
"version": "2024.3.2",
33
"checksum": {
4-
"windows_x86_64": "a63c618048aaab42c7448e5307f53cc8046d744f27cc769074529daf4bb09a8f",
5-
"linux_arm64": "77189751f3c04205613dde5890bae7c47143cb68c1cf542524d8c5b59aeccf8b",
6-
"darwin_arm64": "f5e1e2a64f0ef03b58f95f78beff0891610d0ea9fd80575d366128b109d116c2",
7-
"darwin_x86_64": "6993e105f8fd83101d099015a97cf2bdb4fab53d6dd59ce4160c1b64a22ecd70",
8-
"windows_arm64": "ae59b153135db484d5481723ec922c427028637833003b3b1762ac2686f0a885",
9-
"linux_x86_64": "655d227ca5783df9b12319db00b07ae1e98598e7cd9bb6738d333c7e963d8779"
4+
"windows_x86_64": "d2260f5d2cfd18c0795adcaf7ff57f77d2e7f9d0ce888531c443923388262eec",
5+
"linux_arm64": "8086568b6c62fb7f109c33d8f04f68cf060db4cd260a46d5f581fb093474ecc7",
6+
"darwin_arm64": "03962c7c513b6a1ca67164bbcb65f8673a60cff6fe13f618598439b45d352084",
7+
"darwin_x86_64": "e70904e0c4fc1d56a8d5f1e2682ccbe168b41b973dac2c5fe42f9b31837dbd86",
8+
"windows_arm64": "940e9a84b03db0b5e67f93299879e804984b3893577a58b2424dbc5c2db39cbe",
9+
"linux_x86_64": "a7a47898971fe2c7db08d10afc40292736df33e9b33d9d84b8672f3ec246da04"
1010
}
1111
}

gradle.properties

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616

1717
name=Qodana for Gradle
1818
projectGroup=org.jetbrains.qodana
19-
majorVersion=2024.2
19+
majorVersion=2024.3
2020
buildNumber=0-SNAPSHOT
2121
description=Qodana for Gradle plugin allows to run and configure Qodana analysis for Gradle projects.
2222
tags=qodana,intellij,idea,inspections

orb/commands/scan.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -34,13 +34,13 @@ parameters:
3434
Optional.
3535
primary-cache-key:
3636
type: string
37-
default: qodana-2024.2-<< pipeline.git.branch >>-<< pipeline.git.revision >>
37+
default: qodana-2024.3-<< pipeline.git.branch >>-<< pipeline.git.revision >>
3838
description: >
3939
Allows customizing the primary cache hash.
4040
Optional.
4141
additional-cache-key:
4242
type: string
43-
default: qodana-2024.2-<< pipeline.git.branch >>
43+
default: qodana-2024.3-<< pipeline.git.branch >>
4444
description: >
4545
Allows customizing the additional cache hash.
4646
Optional.
@@ -53,12 +53,12 @@ steps:
5353
name: Qodana Scan
5454
command: |
5555
set -e
56-
QODANA_SHA_256=f567e52961d8a85595a55f1d716d075e337d6cb9fe901ba1e1ec60d33bd32112
57-
CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.2.6
56+
QODANA_SHA_256=d5025e1ef5cd61c7d7fb99951f6f9256f07876a388945a5dafa7895669ef4e9e
57+
CLI_DIRECTORY=/tmp/cache/qodana-cli/2024.3.2
5858
mkdir -p $CLI_DIRECTORY
5959
if [[ ! -x "$CLI_DIRECTORY/qodana" ]]; then
6060
curl -fsSL https://jb.gg/qodana-cli/install | bash -s -- \
61-
v2024.2.6 $CLI_DIRECTORY \
61+
v2024.3.2 $CLI_DIRECTORY \
6262
1> /dev/null
6363
fi
6464
echo "$QODANA_SHA_256 $CLI_DIRECTORY/qodana" | sha256sum -c

orb/examples/scan.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ description: >
33
usage:
44
version: 2.1
55
orbs:
6-
qodana: jetbrains/qodana@2024.2.6
6+
qodana: jetbrains/qodana@2024.3.2
77
jobs:
88
code-quality:
99
machine:

plugin/src/main/kotlin/org/jetbrains/qodana/Checksums.kt

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -98,5 +98,13 @@ val CHECKSUMS = mapOf(
9898
"linux_arm64" to "f29cdb74b592bdeb426bb93f121bcbfc5f1d64b8e4ebff9d924ba7b8260b262d",
9999
"darwin_x86_64" to "6150f9673670d48ccb4a94b7d9e1d92a8932a76349bb483d36816013ba9f26c6",
100100
"darwin_arm64" to "24ac3750fcba2532c02c48411eaf76aaf29058f0daf851ee4d449031b621e9fa"
101+
),
102+
"2024.3.2" to mapOf(
103+
"windows_x86_64" to "23d5e0afdebdcd0c9a28117c0d5b7c5a33300876637fa96eef1b1668d0a71f49",
104+
"windows_arm64" to "5cb634fad9b88377d7d53593f89ea3b8aa7d748b9d34108c0d5b8c4a460245d0",
105+
"linux_x86_64" to "d5025e1ef5cd61c7d7fb99951f6f9256f07876a388945a5dafa7895669ef4e9e",
106+
"linux_arm64" to "f1f4a85693ba701fc13d3f70e94679b5be7d8a07d4087ceeb1195cf24895e77c",
107+
"darwin_x86_64" to "17afbd22c8538b01b45a1aee3e1697ae5fd835d92ed1c916085e092f01cdd24f",
108+
"darwin_arm64" to "70c4dfd3d9b63f45af3a1538bb1e52560ef55c8dbfe61e00494a3666abf1ad5a"
101109
)
102110
)

0 commit comments

Comments
 (0)
0