diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index 1d6070a..3b70a2a 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -23,7 +23,7 @@ jobs: with: fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis - name: Cache SonarCloud packages - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.3.2 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar @@ -33,7 +33,7 @@ jobs: distribution: adopt java-version: 17 - name: Cache Maven packages - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.3.2 with: path: ~/.m2 key: ${{ runner.os }}-m2-${{ hashFiles('**/pom.xml') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8c3b560..533b569 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,14 +16,14 @@ jobs: distribution: adopt - name: Cache SonarCloud packages - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.3.2 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar restore-keys: ${{ runner.os }}-sonar - name: Cache local Maven repository - uses: actions/cache@v3.2.3 + uses: actions/cache@v3.3.2 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}