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
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
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/*/*
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
0 commit comments