Skip to content

Commit ebb6477

Browse files
committed
Merge remote-tracking branch 'origin/main'
2 parents 311025f + 21008d6 commit ebb6477

File tree

5 files changed

+19
-19
lines changed

5 files changed

+19
-19
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 11 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,7 +194,7 @@ 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
@@ -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

build.gradle.kts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
alias(libs.plugins.changelog) // Gradle Changelog Plugin
1212
alias(libs.plugins.qodana) // Gradle Qodana Plugin
1313
alias(libs.plugins.kover) // Gradle Kover Plugin
14-
kotlin("plugin.serialization") version "2.2.20"
14+
kotlin("plugin.serialization") version "2.2.21"
1515
}
1616

1717
group = providers.gradleProperty("pluginGroup").get()

gradle/libs.versions.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ opentest4j = "1.3.0"
55

66
# plugins
77
changelog = "2.4.0"
8-
intelliJPlatform = "2.9.0"
9-
kotlin = "2.2.20"
10-
kover = "0.9.2"
8+
intelliJPlatform = "2.10.4"
9+
kotlin = "2.2.21"
10+
kover = "0.9.3"
1111
qodana = "2025.2.1"
1212

1313
[libraries]

0 commit comments

Comments
 (0)