diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index fb744003a093..790a165da336 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -106,7 +106,7 @@ jobs: STEPS_EXTRACT_VERSION_OUTPUTS_DOCKER_TAGS: ${{ steps.extract_version.outputs.docker_tags }} STEPS_EXTRACT_VERSION_OUTPUTS_REGISTRY_IMAGE: ${{ steps.extract_version.outputs.registry_image }} - name: Cache NPM - uses: runs-on/cache@bd330c5a5f6cbb837823ee25864f3c71a211c2e3 # v5 + uses: runs-on/cache@88d90644011a3a9957fd141a106f5a94f9794203 # v5 with: path: | frontend/node_modules @@ -114,7 +114,7 @@ jobs: key: nodejs-x64-${{ hashFiles('**/package-lock.json') }} restore-keys: nodejs-x64- - name: Cache angular - uses: runs-on/cache@bd330c5a5f6cbb837823ee25864f3c71a211c2e3 # v5 + uses: runs-on/cache@88d90644011a3a9957fd141a106f5a94f9794203 # v5 with: path: frontend/.angular key: angular-${{ github.ref }} diff --git a/.github/workflows/test-core.yml b/.github/workflows/test-core.yml index 87f3f08d1e3a..18c175d5a55b 100644 --- a/.github/workflows/test-core.yml +++ b/.github/workflows/test-core.yml @@ -38,7 +38,7 @@ jobs: persist-credentials: false - name: Cache DOCKER id: cache_docker - uses: runs-on/cache@bd330c5a5f6cbb837823ee25864f3c71a211c2e3 # v5 + uses: runs-on/cache@88d90644011a3a9957fd141a106f5a94f9794203 # v5 with: path: cache/docker # Note: no restore keys since whenever the files below change, we want to rebuild the full image from scratch @@ -47,28 +47,28 @@ jobs: if: steps.cache_docker.outputs.cache-hit == 'true' run: docker load -i cache/docker/image.tar - name: Cache GEM - uses: runs-on/cache@bd330c5a5f6cbb837823ee25864f3c71a211c2e3 # v5 + uses: runs-on/cache@88d90644011a3a9957fd141a106f5a94f9794203 # v5 with: path: cache/bundle key: gem-trixie-${{ hashFiles('.ruby-version') }}-${{ hashFiles('Gemfile.lock') }} restore-keys: | gem-trixie-${{ hashFiles('.ruby-version') }}- - name: Cache NPM - uses: runs-on/cache@bd330c5a5f6cbb837823ee25864f3c71a211c2e3 # v5 + uses: runs-on/cache@88d90644011a3a9957fd141a106f5a94f9794203 # v5 with: path: cache/node key: node-${{ hashFiles('package.json', 'frontend/package-lock.json') }} restore-keys: | node- - name: Cache ANGULAR - uses: runs-on/cache@bd330c5a5f6cbb837823ee25864f3c71a211c2e3 # v5 + uses: runs-on/cache@88d90644011a3a9957fd141a106f5a94f9794203 # v5 with: path: cache/angular key: angular-${{ hashFiles('package.json', 'frontend/package-lock.json') }} restore-keys: | angular- - name: Cache TEST RUNTIME - uses: runs-on/cache@bd330c5a5f6cbb837823ee25864f3c71a211c2e3 # v5 + uses: runs-on/cache@88d90644011a3a9957fd141a106f5a94f9794203 # v5 with: path: cache/runtime-logs key: runtime-logs-${{ github.head_ref || github.ref }}-${{ github.sha }}