diff --git a/.github/workflows/docker-image-ci.yml b/.github/workflows/docker-image-ci.yml index e4a83e811..315ac805d 100644 --- a/.github/workflows/docker-image-ci.yml +++ b/.github/workflows/docker-image-ci.yml @@ -27,7 +27,7 @@ jobs: uses: docker/setup-buildx-action@v2 - name: Cache Docker layers - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} diff --git a/.github/workflows/java-ci.yml b/.github/workflows/java-ci.yml index 3a215e1c5..3fd4fa6c7 100644 --- a/.github/workflows/java-ci.yml +++ b/.github/workflows/java-ci.yml @@ -37,13 +37,13 @@ jobs: languages: java - name: Cache SonarCloud packages - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-parent-pom restore-keys: ${{ runner.os }}-sonar-parent-pom - name: Cache local Maven repository - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-parent-pom-${{ hashFiles('**/parent-pom/pom.xml') }} @@ -56,13 +56,13 @@ jobs: run: ./mvnw -B deploy --settings ../.m2/settings.xml - name: Cache SonarCloud packages - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-webapp-service restore-keys: ${{ runner.os }}-sonar-webapp-service - name: Cache local Maven repository - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-webapp-service-${{ hashFiles('**/webapp-service/pom.xml') }} @@ -151,7 +151,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Cache Docker layers - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} @@ -168,13 +168,13 @@ jobs: fi - name: Cache SonarCloud packages - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-${{ matrix.application }} restore-keys: ${{ runner.os }}-sonar-${{ matrix.application }} - name: Cache local Maven repository - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }} @@ -266,7 +266,7 @@ jobs: - name: Set up Docker Buildx uses: docker/setup-buildx-action@v2 - name: Cache Docker layers - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: /tmp/.buildx-cache key: ${{ github.ref }}-${{ github.sha }} @@ -283,13 +283,13 @@ jobs: fi - name: Cache SonarCloud packages - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.sonar/cache key: ${{ runner.os }}-sonar-${{ matrix.application }} restore-keys: ${{ runner.os }}-sonar-${{ matrix.application }} - name: Cache local Maven repository - uses: actions/cache@v3.3.0 + uses: actions/cache@v3.3.1 with: path: ~/.m2/repository key: ${{ runner.os }}-maven-${{ matrix.application }}-${{ hashFiles('**/${{ matrix.application }}/pom.xml') }}