diff --git a/actions/dependencies-cache/action.yml b/actions/dependencies-cache/action.yml index e612eabb..26cf8308 100644 --- a/actions/dependencies-cache/action.yml +++ b/actions/dependencies-cache/action.yml @@ -57,7 +57,7 @@ runs: - name: ♻️ NX cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).nx == true - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ${{ steps.working-directory.outputs.workspace-relative-path }}/node_modules/.cache/nx key: ${{ runner.os }}-cache-nx-${{ github.sha }} @@ -66,7 +66,7 @@ runs: - name: ♻️ Prettier cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).prettier == true - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ${{ steps.working-directory.outputs.workspace-relative-path }}/node_modules/.cache/prettier key: ${{ runner.os }}-cache-prettier-${{ github.sha }} @@ -75,7 +75,7 @@ runs: - name: ♻️ Docusaurus cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).docusaurus == true - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ steps.working-directory.outputs.workspace-relative-path }}/.docusaurus @@ -86,7 +86,7 @@ runs: - name: ♻️ Vitest cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).vitest == true - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ${{ steps.working-directory.outputs.workspace-relative-path }}/node_modules/.vite/vitest key: ${{ runner.os }}-cache-vitest-${{ github.sha }} @@ -95,7 +95,7 @@ runs: - name: ♻️ Astro cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).astro == true - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ${{ steps.working-directory.outputs.workspace-relative-path }}/node_modules/.astro key: ${{ runner.os }}-cache-astro-${{ github.sha }} @@ -104,7 +104,7 @@ runs: - name: ♻️ Gatsby cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).gatsby == true - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: | ${{ steps.working-directory.outputs.workspace-relative-path }}/.cache @@ -115,7 +115,7 @@ runs: - name: ♻️ Storybook cache if: fromJson(steps.has-installed-dependencies.outputs.installed-dependencies).storybook == true - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ${{ steps.working-directory.outputs.workspace-relative-path }}/node_modules/.cache/storybook key: ${{ runner.os }}-cache-storybook-${{ github.sha }} @@ -191,7 +191,7 @@ runs: - name: ♻️ Test cache if: steps.jest-cache-dir-path.outputs.dir - uses: actions/cache@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5.0.4 + uses: actions/cache@27d5ce7f107fe9357f9df03efb73ab90386fccae # v5.0.5 with: path: ${{ steps.jest-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-test-${{ github.sha }}