diff --git a/.github/workflows/test-on-docker.yml b/.github/workflows/test-on-docker.yml index 4c2c68f512..5ce10e5d4f 100644 --- a/.github/workflows/test-on-docker.yml +++ b/.github/workflows/test-on-docker.yml @@ -41,9 +41,9 @@ jobs: - "7.2.6" # - "6.2.16" steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up publishing to maven central - uses: actions/setup-java@v2 + uses: actions/setup-java@v4 with: java-version: '8' distribution: 'temurin' @@ -53,7 +53,7 @@ jobs: sudo apt install -y make make compile-module - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: | ~/.m2/repository @@ -124,7 +124,7 @@ jobs: continue-on-error: true # Upload code coverage - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: fail_ci_if_error: false token: ${{ secrets.CODECOV_TOKEN }}