Skip to content

Commit 3c627a3

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 9e7daef + 3971c44 commit 3c627a3

File tree

4 files changed

+14
-14
lines changed

4 files changed

+14
-14
lines changed

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141

4242
# Check out the current repository
4343
- name: Fetch Sources
44-
uses: actions/checkout@v5
44+
uses: actions/checkout@v6
4545

4646
# Set up the Java environment for the next steps
4747
- name: Setup Java
@@ -71,7 +71,7 @@ jobs:
7171
7272
# Store an already-built plugin as an artifact for downloading
7373
- name: Upload artifact
74-
uses: actions/upload-artifact@v5
74+
uses: actions/upload-artifact@v6
7575
with:
7676
name: ${{ steps.artifact.outputs.filename }}
7777
path: ./build/distributions/content/*/*
@@ -92,7 +92,7 @@ jobs:
9292

9393
# Check out the current repository
9494
- name: Fetch Sources
95-
uses: actions/checkout@v5
95+
uses: actions/checkout@v6
9696

9797
# Set up the Java environment for the next steps
9898
- name: Setup Java
@@ -114,7 +114,7 @@ jobs:
114114
# Collect Tests Result of failed tests
115115
- name: Collect Tests Result
116116
if: ${{ failure() }}
117-
uses: actions/upload-artifact@v5
117+
uses: actions/upload-artifact@v6
118118
with:
119119
name: tests-result
120120
path: ${{ github.workspace }}/build/reports/tests
@@ -146,7 +146,7 @@ jobs:
146146

147147
# Check out the current repository
148148
- name: Fetch Sources
149-
uses: actions/checkout@v5
149+
uses: actions/checkout@v6
150150
with:
151151
ref: ${{ github.event.pull_request.head.sha }} # to check out the actual pull request commit, not the merge commit
152152
fetch-depth: 0 # a full history is required for pull request analysis
@@ -160,7 +160,7 @@ jobs:
160160

161161
# Run Qodana inspections
162162
- name: Qodana - Code Inspection
163-
uses: JetBrains/qodana-action@v2025.1.1
163+
uses: JetBrains/qodana-action@v2025.2.4
164164
with:
165165
cache-default-branch-only: true
166166

@@ -180,7 +180,7 @@ jobs:
180180

181181
# Check out the current repository
182182
- name: Fetch Sources
183-
uses: actions/checkout@v5
183+
uses: actions/checkout@v6
184184

185185
# Set up the Java environment for the next steps
186186
- name: Setup Java
@@ -202,7 +202,7 @@ jobs:
202202
# Collect Plugin Verifier Result
203203
- name: Collect Plugin Verifier Result
204204
if: ${{ always() }}
205-
uses: actions/upload-artifact@v5
205+
uses: actions/upload-artifact@v6
206206
with:
207207
name: pluginVerifier-result
208208
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -220,7 +220,7 @@ jobs:
220220

221221
# Check out the current repository
222222
- name: Fetch Sources
223-
uses: actions/checkout@v5
223+
uses: actions/checkout@v6
224224

225225
# Remove old release drafts by using the curl request for the available releases with a draft flag
226226
- name: Remove Old Release Drafts

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ jobs:
2727

2828
# Check out the current repository
2929
- name: Fetch Sources
30-
uses: actions/checkout@v5
30+
uses: actions/checkout@v6
3131
with:
3232
ref: ${{ github.event.release.tag_name }}
3333

.github/workflows/run-ui-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333

3434
# Check out the current repository
3535
- name: Fetch Sources
36-
uses: actions/checkout@v5
36+
uses: actions/checkout@v6
3737

3838
# Set up the Java environment for the next steps
3939
- name: Setup Java

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,9 +6,9 @@ opentest4j = "1.3.0"
66
# plugins
77
changelog = "2.5.0"
88
intelliJPlatform = "2.10.5"
9-
kotlin = "2.2.21"
10-
kover = "0.9.3"
11-
qodana = "2025.2.2"
9+
kotlin = "2.3.0"
10+
kover = "0.9.4"
11+
qodana = "2025.2.4"
1212

1313
[libraries]
1414
junit = { group = "junit", name = "junit", version.ref = "junit" }

0 commit comments

Comments
 (0)