Skip to content

Commit e199844

Browse files
committed
Update GitHub Actions
1 parent 2dddcc5 commit e199844

1 file changed

Lines changed: 5 additions & 4 deletions

File tree

.github/workflows/CI.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,14 @@ jobs:
1313
REPO_SLUG: ${{ github.repository }}
1414
BRANCH: ${{ github.head_ref }}
1515
steps:
16-
- uses: actions/checkout@v2
16+
- uses: actions/checkout@v6
1717
- name: Set up JDK ${{ matrix.java }}
18-
uses: actions/setup-java@v1
18+
uses: actions/setup-java@v5
1919
with:
2020
java-version: ${{ matrix.java }}
21+
distribution: 'temurin'
2122
- name: Cache Maven dependencies
22-
uses: actions/cache@v2
23+
uses: actions/cache@v5
2324
with:
2425
path: ~/.m2
2526
key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }}
@@ -29,4 +30,4 @@ jobs:
2930
- name: check license header is present in all files
3031
run: mvn license:check
3132
- name: Upload coverage to Codecov
32-
run: bash <(curl -s https://codecov.io/bash)
33+
uses: codecov/codecov-action@v5

0 commit comments

Comments
 (0)