@@ -14,15 +14,15 @@ jobs:
1414 runs-on : ubuntu-latest
1515 steps :
1616 - name : Check out repository
17- uses : actions/checkout@v3
17+ uses : actions/checkout@v4
1818 - name : Set up JDK
19- uses : actions/setup-java@v3
19+ uses : actions/setup-java@v4
2020 with :
2121 check-latest : true
2222 distribution : temurin
2323 java-version : ${{ matrix.java }}
2424 - name : Set up cache
25- uses : actions/cache@v3
25+ uses : actions/cache@v4
2626 env :
2727 cache-name : cache-maven-artifacts
2828 with :
3333 - name : Check Java codestyle
3434 run : mvn com.spotify.fmt:fmt-maven-plugin:check
3535 - name : Set up Node.js
36- uses : actions/setup-node@v3
36+ uses : actions/setup-node@v4
3737 with :
3838 check-latest : true
3939 node-version : 12
5050 runs-on : ubuntu-latest
5151 steps :
5252 - name : Check out repository
53- uses : actions/checkout@v3
53+ uses : actions/checkout@v4
5454 - name : Set up cache
55- uses : actions/cache@v3
55+ uses : actions/cache@v4
5656 env :
5757 cache-name : cache-maven-artifacts
5858 with :
@@ -61,16 +61,16 @@ jobs:
6161 ~/.m2/repository
6262 **/target
6363 - name : Publish code coverage reports
64- uses : codecov/codecov-action@v3
64+ uses : codecov/codecov-action@v5
6565 publish :
6666 if : (github.event_name == 'push' && (contains(github.ref, 'main') || startsWith(github.ref, 'release/'))) || github.event_name == 'release'
6767 needs : build
6868 runs-on : ubuntu-latest
6969 steps :
7070 - name : Check out repository
71- uses : actions/checkout@v3
71+ uses : actions/checkout@v4
7272 - name : Set up cache
73- uses : actions/cache@v3
73+ uses : actions/cache@v4
7474 env :
7575 cache-name : cache-maven-artifacts
7676 with :
8585 # Publish snapshot
8686 - name : Set up JDK 17 for publishing a snapshot
8787 if : github.event_name == 'push' && endswith(env.PROJECT_VERSION, 'SNAPSHOT')
88- uses : actions/setup-java@v3
88+ uses : actions/setup-java@v4
8989 with :
9090 check-latest : true
9191 distribution : temurin
@@ -102,7 +102,7 @@ jobs:
102102 # Publish release
103103 - name : Set up JDK 17 for publishing a release
104104 if : github.event_name == 'release' && !endswith(env.PROJECT_VERSION, 'SNAPSHOT')
105- uses : actions/setup-java@v3
105+ uses : actions/setup-java@v4
106106 with :
107107 check-latest : true
108108 distribution : temurin
0 commit comments