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 @@ -11,12 +11,12 @@ jobs:
1111 runs-on : ubuntu-latest
1212
1313 steps :
14- - uses : actions/checkout@v3
14+ - uses : actions/checkout@v5
1515 with :
1616 fetch-depth : 0 # Fetch all history for all branches and tags
1717
1818 - name : Set up JDK 21
19- uses : actions/setup-java@v3
19+ uses : actions/setup-java@v5
2020 with :
2121 java-version : ' 21'
2222 distribution : ' temurin'
@@ -29,16 +29,16 @@ jobs:
2929 run : ./gradlew build --no-daemon
3030
3131 - name : Test Summary
32- uses : mikepenz/action-junit-report@v3
32+ uses : mikepenz/action-junit-report@v5
3333 if : always() # always run even if the previous step fails
3434 with :
3535 report_paths : ' **/build/test-results/test/TEST-*.xml'
3636
3737 - name : Upload Build Artifacts
38- uses : actions/upload-artifact@v3
38+ uses : actions/upload-artifact@v4
3939 if : success()
4040 with :
4141 name : build-artifacts
4242 path : |
4343 */build/libs/*.jar
44- */build/reports/**
44+ */build/reports/**
You can’t perform that action at this time.
0 commit comments