Skip to content

Commit 4ede6dc

Browse files
committed
Updated Action plugin versions
1 parent 5de6e02 commit 4ede6dc

1 file changed

Lines changed: 6 additions & 4 deletions

File tree

.github/workflows/maven.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,17 +15,19 @@ jobs:
1515
runs-on: ubuntu-latest
1616
strategy:
1717
matrix:
18-
java: [ 11, 17, 19 ]
18+
java: [ 11, 17, 21, 25 ]
1919
name: Java ${{ matrix.java }}
2020

2121
steps:
22-
- uses: actions/checkout@v3
22+
- uses: actions/checkout@v5
2323
- name: Set up JDK ${{ matrix.java }}
24-
uses: actions/setup-java@v3
24+
uses: actions/setup-java@v5
2525
with:
2626
java-version: ${{ matrix.java }}
2727
distribution: temurin
2828
- name: Build with Maven
2929
run: cd org.pathvisio.lib; mvn clean install -Dgpg.skip -Dmaven.javadoc.skip=true
3030
- name: push JaCoCo stats to codecov.io
31-
run: bash <(curl -s https://codecov.io/bash)
31+
uses: codecov/codecov-action@v5
32+
env:
33+
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)