File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,15 +3,15 @@ name: Build
33on : [push, pull_request]
44jobs :
55 build :
6- runs-on : ubuntu-22 .04
6+ runs-on : ubuntu-24 .04
77 container :
88 image : mcr.microsoft.com/openjdk/jdk:21-ubuntu
99 options : --user root
1010 steps :
11- - uses : actions/checkout@v3
12- - uses : gradle/wrapper-validation-action@v1
11+ - uses : actions/checkout@v4
12+ - uses : gradle/actions/ wrapper-validation@v3
1313 - run : ./gradlew check build publishToMavenLocal --stacktrace --parallel --warning-mode=fail
14- - uses : actions/upload-artifact@v3
14+ - uses : actions/upload-artifact@v4
1515 with :
1616 name : Artifacts
1717 path : build/libs/
Original file line number Diff line number Diff line change @@ -2,19 +2,19 @@ name: Release
22on : [workflow_dispatch] # Manual trigger
33jobs :
44 build :
5- runs-on : ubuntu-22 .04
5+ runs-on : ubuntu-24 .04
66 container :
77 image : mcr.microsoft.com/openjdk/jdk:21-ubuntu
88 options : --user root
99 steps :
10- - uses : actions/checkout@v3
11- - uses : gradle/wrapper-validation-action@v1
10+ - uses : actions/checkout@v4
11+ - uses : gradle/actions/ wrapper-validation@v3
1212 - run : ./gradlew build publish --stacktrace
1313 env :
1414 MAVEN_URL : ${{ secrets.MAVEN_URL }}
1515 MAVEN_USERNAME : ${{ secrets.MAVEN_USERNAME }}
1616 MAVEN_PASSWORD : ${{ secrets.MAVEN_PASSWORD }}
17- - uses : actions/upload-artifact@v3
17+ - uses : actions/upload-artifact@v4
1818 with :
1919 name : Artifacts
2020 path : build/libs/
You can’t perform that action at this time.
0 commit comments