@@ -18,17 +18,17 @@ jobs:
1818 runs-on : ubuntu-latest
1919 timeout-minutes : 30
2020 steps :
21- - uses : actions/checkout@v5
21+ - uses : actions/checkout@v6
2222
2323 - name : Set up JDK
2424 uses : actions/setup-java@v5
2525 with :
26- java-version : ' 17 '
26+ java-version : ' 21 '
2727 distribution : ' temurin'
2828
2929 # Try to reuse existing cache from check-build
3030 - name : Try restore Maven Cache
31- uses : actions/cache/restore@v4
31+ uses : actions/cache/restore@v5
3232 with :
3333 path : ~/.m2/repository
3434 key : ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
6363 outputs :
6464 upload_url : ${{ steps.create-release.outputs.upload_url }}
6565 steps :
66- - uses : actions/checkout@v5
66+ - uses : actions/checkout@v6
6767
6868 - name : Configure Git
6969 run : |
9191
9292 - name : Create Release
9393 id : create-release
94- uses : shogo82148/actions-create-release@7b89596097b26731bda0852f1504f813499079ee # v1
94+ uses : shogo82148/actions-create-release@559c27ce7eb834825e2b55927c64f6d1bd1db716 # v1
9595 with :
9696 tag_name : v${{ steps.version.outputs.release }}
9797 release_name : v${{ steps.version.outputs.release }}
@@ -118,7 +118,7 @@ jobs:
118118 needs : [prepare-release]
119119 timeout-minutes : 60
120120 steps :
121- - uses : actions/checkout@v5
121+ - uses : actions/checkout@v6
122122
123123 - name : Init Git and pull
124124 run : |
@@ -130,7 +130,7 @@ jobs:
130130 uses : actions/setup-java@v5
131131 with : # running setup-java overwrites the settings.xml
132132 distribution : ' temurin'
133- java-version : ' 17 '
133+ java-version : ' 21 '
134134 server-id : github-central
135135 server-password : PACKAGES_CENTRAL_TOKEN
136136 gpg-passphrase : MAVEN_GPG_PASSPHRASE
@@ -147,7 +147,7 @@ jobs:
147147 uses : actions/setup-java@v5
148148 with : # running setup-java again overwrites the settings.xml
149149 distribution : ' temurin'
150- java-version : ' 17 '
150+ java-version : ' 21 '
151151 server-id : sonatype-central-portal
152152 server-username : MAVEN_CENTRAL_USERNAME
153153 server-password : MAVEN_CENTRAL_TOKEN
@@ -166,7 +166,7 @@ jobs:
166166 needs : [prepare-release]
167167 timeout-minutes : 15
168168 steps :
169- - uses : actions/checkout@v5
169+ - uses : actions/checkout@v6
170170
171171 - name : Init Git and pull
172172 run : |
@@ -177,12 +177,12 @@ jobs:
177177 - name : Setup - Java
178178 uses : actions/setup-java@v5
179179 with :
180- java-version : ' 17 '
180+ java-version : ' 21 '
181181 distribution : ' temurin'
182182
183183 # Try to reuse existing cache from check-build
184184 - name : Try restore Maven Cache
185- uses : actions/cache/restore@v4
185+ uses : actions/cache/restore@v5
186186 with :
187187 path : ~/.m2/repository
188188 key : ${{ runner.os }}-mvn-build-${{ hashFiles('**/pom.xml') }}
@@ -205,7 +205,7 @@ jobs:
205205 needs : [publish-maven]
206206 timeout-minutes : 10
207207 steps :
208- - uses : actions/checkout@v5
208+ - uses : actions/checkout@v6
209209
210210 - name : Init Git and pull
211211 run : |
0 commit comments