@@ -19,23 +19,23 @@ jobs:
1919 fail-fast : false
2020 matrix :
2121 java : [ '11' ]
22- maven : [ '3.9.4 ' ]
22+ maven : [ '3.9.6 ' ]
2323 os : [ 'ubuntu-22.04' ]
2424 name : Build (Java ${{ matrix.java }}, ${{ matrix.os }})
2525 runs-on : ${{ matrix.os }}
2626 steps :
2727 - name : Checkout
2828 if : github.head_ref == ''
29- uses : actions/checkout@v3
29+ uses : actions/checkout@v4
3030
3131 - name : Checkout merge
3232 if : github.head_ref != ''
33- uses : actions/checkout@v3
33+ uses : actions/checkout@v4
3434 with :
3535 ref : refs/pull/${{github.event.pull_request.number}}/merge
3636
3737 - name : Set up Cache
38- uses : actions/cache@v3
38+ uses : actions/cache@v4
3939 with :
4040 path : |
4141 ~/.m2/repository
@@ -45,13 +45,13 @@ jobs:
4545 ${{ runner.os }}-maven-
4646
4747 - name : Set up Java ${{ matrix.java }}
48- uses : actions/setup-java@v3
48+ uses : actions/setup-java@v4
4949 with :
5050 distribution : ' temurin'
5151 java-version : ${{ matrix.java }}
5252
5353 - name : Set up Maven ${{ matrix.maven }}
54- uses : stCarolas/setup-maven@v4.5
54+ uses : stCarolas/setup-maven@v5
5555 with :
5656 maven-version : ${{ matrix.maven }}
5757
@@ -67,14 +67,14 @@ jobs:
6767
6868 - name : Upload Build Log
6969 if : ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
70- uses : actions/upload-artifact@v3
70+ uses : actions/upload-artifact@v4
7171 with :
7272 name : build-log-java-${{ matrix.java }}-${{ matrix.os }}
7373 path : build.log
7474
7575 - name : Upload SAT Summary Report
7676 if : ${{ always() && ((steps.build.outcome == 'success') || (steps.build.outcome == 'failure')) }}
77- uses : actions/upload-artifact@v3
77+ uses : actions/upload-artifact@v4
7878 with :
7979 name : sat-summary-report
8080 path : target/summary_report.html
0 commit comments