Skip to content

Commit fa5f931

Browse files
Update github action versions (#301)
1 parent 4f13296 commit fa5f931

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

.github/workflows/maven.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,10 @@ jobs:
2525

2626
steps:
2727
- name: Checkout
28-
uses: actions/checkout@v3
28+
uses: actions/checkout@v4
2929

3030
- name: Set up JDK ${{ matrix.java }}
31-
uses: actions/setup-java@v3
31+
uses: actions/setup-java@v4
3232
with:
3333
distribution: temurin
3434
java-version: ${{ matrix.java }}
@@ -39,20 +39,22 @@ jobs:
3939

4040
- name: Upload coverage report
4141
if: matrix.java == env.RELEASE_JAVA_VERSION
42-
uses: codecov/codecov-action@v2
42+
uses: codecov/codecov-action@v4
43+
with:
44+
token: ${{ secrets.CODECOV_TOKEN }}
4345

4446
release:
4547
if: github.ref == 'refs/heads/master'
4648
needs: test
4749
runs-on: ubuntu-latest
4850
steps:
4951
- name: Checkout
50-
uses: actions/checkout@v3
52+
uses: actions/checkout@v4
5153
with:
5254
fetch-depth: 0
5355

5456
- name: Set up JDK
55-
uses: actions/setup-java@v3
57+
uses: actions/setup-java@v4
5658
with:
5759
distribution: temurin
5860
java-version: ${{ env.RELEASE_JAVA_VERSION }}

0 commit comments

Comments
 (0)