File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -15,14 +15,14 @@ jobs:
1515 java : [ 11, 17 ]
1616
1717 steps :
18- - uses : actions/checkout@v5
18+ - uses : actions/checkout@v6
1919 - name : Set up JDK ${{ matrix.java }}
2020 uses : actions/setup-java@v5
2121 with :
2222 distribution : temurin
2323 java-version : ${{ matrix.java }}
2424 - name : Cache Maven repository
25- uses : actions/cache@v4
25+ uses : actions/cache@v5
2626 with :
2727 path : ~/.m2/repository
2828 key : ${{ runner.os }}-java${{ matrix.java }}-maven-${{ hashFiles('**/pom.xml') }}
3232 - name : Build with Maven
3333 run : mvn -B package --file pom.xml
3434 - name : Upload distribution
35- uses : actions/upload-artifact@v5
35+ uses : actions/upload-artifact@v6
3636 with :
3737 name : distribution-java${{ matrix.java }}
3838 path : target/botz-*.jar
5959 if : ${{github.repository == 'igniterealtime/Botz' && github.event_name == 'push' && ( needs.check_branch.outputs.is_publishable_branch == 'true' || contains(github.ref, 'refs/tags/') ) }}
6060
6161 steps :
62- - uses : actions/checkout@v5
62+ - uses : actions/checkout@v6
6363 with :
6464 # Defend against another commit quickly following the first
6565 # We want the one that's been tested, rather than the head of main
7979 echo "rel_id is '$rel_id'"
8080
8181 - name : Cache Maven repository
82- uses : actions/cache@v4
82+ uses : actions/cache@v5
8383 with :
8484 path : ~/.m2/repository
8585 key : ${{ runner.os }}-java11-maven-${{ hashFiles('**/pom.xml') }}
You can’t perform that action at this time.
0 commit comments