We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2dddcc5 commit e199844Copy full SHA for e199844
1 file changed
.github/workflows/CI.yml
@@ -13,13 +13,14 @@ jobs:
13
REPO_SLUG: ${{ github.repository }}
14
BRANCH: ${{ github.head_ref }}
15
steps:
16
- - uses: actions/checkout@v2
+ - uses: actions/checkout@v6
17
- name: Set up JDK ${{ matrix.java }}
18
- uses: actions/setup-java@v1
+ uses: actions/setup-java@v5
19
with:
20
java-version: ${{ matrix.java }}
21
+ distribution: 'temurin'
22
- name: Cache Maven dependencies
- uses: actions/cache@v2
23
+ uses: actions/cache@v5
24
25
path: ~/.m2
26
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -29,4 +30,4 @@ jobs:
29
30
- name: check license header is present in all files
31
run: mvn license:check
32
- name: Upload coverage to Codecov
- run: bash <(curl -s https://codecov.io/bash)
33
+ uses: codecov/codecov-action@v5
0 commit comments