1515 runs-on : ubuntu-latest
1616 timeout-minutes : 30
1717 steps :
18- - uses : actions/checkout@v5
18+ - uses : actions/checkout@v6
1919
2020 - name : Set up JDK
2121 uses : actions/setup-java@v5
2525
2626 # Try to reuse existing cache from check-build
2727 - name : Try restore Maven Cache
28- uses : actions/cache/restore@v4
28+ uses : actions/cache/restore@v5
2929 with :
3030 path : ~/.m2/repository
3131 key : ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
6161 upload_url : ${{ steps.create-release.outputs.upload_url }}
6262 version : ${{ steps.version.outputs.release }}
6363 steps :
64- - uses : actions/checkout@v5
64+ - uses : actions/checkout@v6
6565
6666 - name : Configure Git
6767 run : |
8888
8989 - name : Create Release
9090 id : create-release
91- uses : shogo82148/actions-create-release@7b89596097b26731bda0852f1504f813499079ee # v1
91+ uses : shogo82148/actions-create-release@559c27ce7eb834825e2b55927c64f6d1bd1db716 # v1
9292 with :
9393 tag_name : v${{ steps.version.outputs.release }}
9494 release_name : v${{ steps.version.outputs.release }}
@@ -139,7 +139,7 @@ jobs:
139139 needs : [prepare-release]
140140 timeout-minutes : 60
141141 steps :
142- - uses : actions/checkout@v5
142+ - uses : actions/checkout@v6
143143
144144 - name : Init Git and pull
145145 run : |
@@ -193,7 +193,7 @@ jobs:
193193 MAVEN_GPG_PASSPHRASE : ${{ secrets.MAVEN_GPG_PASSPHRASE }}
194194
195195 - name : Upload server standalone JAR
196- uses : actions/upload-artifact@v4
196+ uses : actions/upload-artifact@v6
197197 with :
198198 name : server-standalone
199199 path : server/target/server-standalone.jar
@@ -215,7 +215,7 @@ jobs:
215215 attestations : write
216216 id-token : write
217217 steps :
218- - uses : actions/checkout@v5
218+ - uses : actions/checkout@v6
219219
220220 - name : Init Git and pull
221221 run : |
@@ -224,7 +224,7 @@ jobs:
224224 git pull
225225
226226 - name : Download server JAR
227- uses : actions/download-artifact@v5
227+ uses : actions/download-artifact@v7
228228 with :
229229 name : server-standalone
230230 path : server/target
@@ -281,7 +281,7 @@ jobs:
281281 needs : [publish-maven]
282282 timeout-minutes : 15
283283 steps :
284- - uses : actions/checkout@v5
284+ - uses : actions/checkout@v6
285285
286286 - name : Init Git and pull
287287 run : |
@@ -297,7 +297,7 @@ jobs:
297297
298298 # Try to reuse existing cache from check-build
299299 - name : Try restore Maven Cache
300- uses : actions/cache/restore@v4
300+ uses : actions/cache/restore@v5
301301 with :
302302 path : ~/.m2/repository
303303 key : ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
@@ -329,7 +329,7 @@ jobs:
329329 needs : [publish-maven, publish-docker]
330330 timeout-minutes : 10
331331 steps :
332- - uses : actions/checkout@v5
332+ - uses : actions/checkout@v6
333333
334334 - name : Init Git and pull
335335 run : |
0 commit comments