diff --git a/.github/workflows/maven-ci.yml b/.github/workflows/maven-ci.yml index 4a7137f3..32af6ff5 100644 --- a/.github/workflows/maven-ci.yml +++ b/.github/workflows/maven-ci.yml @@ -13,9 +13,9 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Set up JDK 17 - uses: actions/setup-java@v3 + uses: actions/setup-java@v4 with: distribution: 'corretto' java-version: '17' @@ -23,7 +23,7 @@ jobs: # Github Authentication is required to download artifacts from github packages # A secret is created for this repo, so that github actions can fetch it, the secret is named after GH_PAT_FOR_ACTIONS_TOKEN - name: maven-settings - uses: s4u/maven-settings-action@v2 + uses: s4u/maven-settings-action@v3 with: servers: '[{"id": "github", "username": "madieUser", "password": "${GITHUB_TOKEN_REF}"}]' githubServer: false @@ -38,7 +38,7 @@ jobs: uses: codecov/codecov-action@v3 - name: Cache local Maven repository - uses: actions/cache@v2 + uses: actions/cache@v4 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}