diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eab91d45..3fc01454 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -5,7 +5,7 @@ jobs: strategy: matrix: distribution: ['temurin'] - java-version: ['11', '16', '17', '18', '19', '20', '21'] + java-version: ['11', '16', '17', '18', '19', '20', '21', '22'] include: - distribution: 'adopt' java-version: '12' @@ -18,10 +18,12 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: ${{ matrix.distribution }} java-version: ${{ matrix.java-version }} cache: maven - run: mvn --batch-mode verify -Dgpg.skip - - uses: codecov/codecov-action@v3 \ No newline at end of file + - uses: codecov/codecov-action@v4 + with: + token: ${{ secrets.CODECOV_TOKEN }} \ No newline at end of file