4848 - stage13
4949 steps :
5050 - name : Checkout
51- uses : actions/checkout@v3
51+ uses : actions/checkout@v4
5252
5353 - name : Set up JDK
5454 uses : oracle-actions/setup-java@v1
6060 run : mvn -version
6161
6262 - name : Cache Maven packages
63- uses : actions/cache@v3
63+ uses : actions/cache@v4
6464 with :
6565 path : ~/.m2
6666 key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -82,31 +82,31 @@ jobs:
8282
8383 # Upload build artifacts for diagnosing failures
8484 - name : Build Artifacts test logs
85- uses : actions/upload-artifact@v3
85+ uses : actions/upload-artifact@v4
8686 if : failure()
8787 with :
8888 name : test-output-${{ matrix.stage }}
8989 path : prj/**/target/test-output/**/*
9090 if-no-files-found : ignore
9191
9292 - name : Build Artifacts test reports
93- uses : actions/upload-artifact@v3
93+ uses : actions/upload-artifact@v4
9494 if : failure()
9595 with :
9696 name : failsafe-surefire-test-reports-${{ matrix.stage }}
9797 path : prj/**/target/*-reports/**/*
9898 if-no-files-found : ignore
9999
100100 - name : Build Artifacts core dumps
101- uses : actions/upload-artifact@v3
101+ uses : actions/upload-artifact@v4
102102 if : failure()
103103 with :
104104 name : core-dumps-${{ matrix.stage }}
105105 path : prj/**/core.*
106106 if-no-files-found : ignore
107107
108108 - name : Build Artifacts compiler replays
109- uses : actions/upload-artifact@v3
109+ uses : actions/upload-artifact@v4
110110 if : failure()
111111 with :
112112 name : compiler-replay-logs-${{ matrix.stage }}
0 commit comments