Skip to content

Commit c235843

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 34db2c0 + 7788f44 commit c235843

File tree

4 files changed

+22
-22
lines changed

4 files changed

+22
-22
lines changed

.github/workflows/build.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838

3939
# Check out the current repository
4040
- name: Fetch Sources
41-
uses: actions/checkout@v5
41+
uses: actions/checkout@v6
4242

4343
# Set up Java environment for the next steps
4444
- name: Setup Java
@@ -49,7 +49,7 @@ jobs:
4949

5050
# Setup Gradle
5151
- name: Setup Gradle
52-
uses: gradle/actions/setup-gradle@v4
52+
uses: gradle/actions/setup-gradle@v5
5353

5454
# Set environment variables
5555
- name: Export Properties
@@ -84,7 +84,7 @@ jobs:
8484
8585
# Store already-built plugin as an artifact for downloading
8686
- name: Upload artifact
87-
uses: actions/upload-artifact@v4
87+
uses: actions/upload-artifact@v5
8888
with:
8989
name: ${{ steps.artifact.outputs.filename }}
9090
path: ./build/distributions/content/*/*
@@ -98,7 +98,7 @@ jobs:
9898

9999
# Check out the current repository
100100
- name: Fetch Sources
101-
uses: actions/checkout@v5
101+
uses: actions/checkout@v6
102102

103103
# Set up Java environment for the next steps
104104
- name: Setup Java
@@ -109,7 +109,7 @@ jobs:
109109

110110
# Setup Gradle
111111
- name: Setup Gradle
112-
uses: gradle/actions/setup-gradle@v4
112+
uses: gradle/actions/setup-gradle@v5
113113

114114
# Run tests
115115
- name: Run Tests
@@ -118,7 +118,7 @@ jobs:
118118
# Collect Tests Result of failed tests
119119
- name: Collect Tests Result
120120
if: ${{ failure() }}
121-
uses: actions/upload-artifact@v4
121+
uses: actions/upload-artifact@v5
122122
with:
123123
name: tests-result
124124
path: ${{ github.workspace }}/build/reports/tests
@@ -149,7 +149,7 @@ jobs:
149149

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

184184
# Check out the current repository
185185
- name: Fetch Sources
186-
uses: actions/checkout@v5
186+
uses: actions/checkout@v6
187187

188188
# Set up Java environment for the next steps
189189
- name: Setup Java
@@ -194,11 +194,11 @@ jobs:
194194

195195
# Setup Gradle
196196
- name: Setup Gradle
197-
uses: gradle/actions/setup-gradle@v4
197+
uses: gradle/actions/setup-gradle@v5
198198

199199
# Cache Plugin Verifier IDEs
200200
- name: Setup Plugin Verifier IDEs Cache
201-
uses: actions/cache@v4
201+
uses: actions/cache@v5
202202
with:
203203
path: ${{ needs.build.outputs.pluginVerifierHomeDir }}/ides
204204
key: plugin-verifier-${{ hashFiles('build/listProductsReleases.txt') }}
@@ -210,7 +210,7 @@ jobs:
210210
# Collect Plugin Verifier Result
211211
- name: Collect Plugin Verifier Result
212212
if: ${{ always() }}
213-
uses: actions/upload-artifact@v4
213+
uses: actions/upload-artifact@v5
214214
with:
215215
name: pluginVerifier-result
216216
path: ${{ github.workspace }}/build/reports/pluginVerifier
@@ -228,7 +228,7 @@ jobs:
228228

229229
# Check out the current repository
230230
- name: Fetch Sources
231-
uses: actions/checkout@v5
231+
uses: actions/checkout@v6
232232

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

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020

2121
# Check out the current repository
2222
- name: Fetch Sources
23-
uses: actions/checkout@v5
23+
uses: actions/checkout@v6
2424
with:
2525
ref: ${{ github.event.release.tag_name }}
2626

@@ -33,7 +33,7 @@ jobs:
3333

3434
# Setup Gradle
3535
- name: Setup Gradle
36-
uses: gradle/actions/setup-gradle@v4
36+
uses: gradle/actions/setup-gradle@v5
3737

3838
# Set environment variables
3939
- name: Export Properties

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

Lines changed: 2 additions & 2 deletions
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 Java environment for the next steps
3939
- name: Setup Java
@@ -44,7 +44,7 @@ jobs:
4444

4545
# Setup Gradle
4646
- name: Setup Gradle
47-
uses: gradle/actions/setup-gradle@v4
47+
uses: gradle/actions/setup-gradle@v5
4848

4949
# Run IDEA prepared for UI testing
5050
- name: Run IDE

gradle/libs.versions.toml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ junit = "4.13.2"
44
opentest4j = "1.3.0"
55

66
# plugins
7-
changelog = "2.4.0"
8-
intelliJPlatform = "2.9.0"
9-
kotlin = "2.2.20"
10-
kover = "0.9.2"
11-
qodana = "2025.2.1"
12-
grammarkit = "2022.3.2.2"
7+
changelog = "2.5.0"
8+
intelliJPlatform = "2.10.5"
9+
kotlin = "2.2.21"
10+
kover = "0.9.4"
11+
qodana = "2025.2.4"
12+
grammarkit = "2023.3.0.1"
1313

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

0 commit comments

Comments
 (0)