@@ -11,23 +11,23 @@ jobs:
1111 java : [17, 19]
1212
1313 steps :
14- - uses : actions/checkout@v2
14+ - uses : actions/checkout@v3
1515 - name : Set up JDK ${{ matrix.java }}
16- uses : actions/setup-java@v1
16+ uses : actions/setup-java@v3
1717 with :
1818 java-version : ${{ matrix.java }}
1919 - name : Cache Maven packages
20- uses : actions/cache@v1
20+ uses : actions/cache@v3
2121 with :
2222 path : ~/.m2
2323 key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
2424 restore-keys : ${{ runner.os }}-m2
2525 - name : Build with Maven
2626 run : mvn test jacoco:report --file pom.xml -B
2727
28- - uses : codecov/codecov-action@v1
28+ - uses : codecov/codecov-action@v2
2929 with :
30- file : ./**/ target/site/jacoco/jacoco.xml
30+ file : target/site/jacoco/jacoco.xml
3131 name : codecov
3232
3333 build-windows :
@@ -38,13 +38,13 @@ jobs:
3838 java : [17, 19]
3939
4040 steps :
41- - uses : actions/checkout@v2
41+ - uses : actions/checkout@v3
4242 - name : Set up JDK ${{ matrix.java }}
43- uses : actions/setup-java@v1
43+ uses : actions/setup-java@v3
4444 with :
4545 java-version : ${{ matrix.java }}
4646 - name : Cache Maven packages
47- uses : actions/cache@v1
47+ uses : actions/cache@v3
4848 with :
4949 path : ~/.m2
5050 key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -56,21 +56,21 @@ jobs:
5656 name : Build
5757 runs-on : ubuntu-latest
5858 steps :
59- - uses : actions/checkout@v2
59+ - uses : actions/checkout@v3
6060 with :
6161 fetch-depth : 0
62- - name : Set up JDK 11
63- uses : actions/setup-java@v1
62+ - name : Set up JDK 17
63+ uses : actions/setup-java@v3
6464 with :
65- java-version : 11
65+ java-version : 17
6666 - name : Cache SonarCloud packages
67- uses : actions/cache@v1
67+ uses : actions/cache@v3
6868 with :
6969 path : ~/.sonar/cache
7070 key : ${{ runner.os }}-sonar
7171 restore-keys : ${{ runner.os }}-sonar
7272 - name : Cache Maven packages
73- uses : actions/cache@v1
73+ uses : actions/cache@v3
7474 with :
7575 path : ~/.m2
7676 key : ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
0 commit comments