From 08119103b321b21df3faaf9d8ffad9530166c73a Mon Sep 17 00:00:00 2001 From: mohamed amine ozennou <102986762+ozennou@users.noreply.github.com> Date: Fri, 17 Jan 2025 14:10:21 +0100 Subject: [PATCH] Update actions/checkout, actions/setup-java and codecov/codecov-action --- .github/workflows/test-on-docker.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) 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 }}