diff --git a/.github/actions/install-dependencies-bun/action.yml b/.github/actions/install-dependencies-bun/action.yml index 8f8e4cc..3802a42 100644 --- a/.github/actions/install-dependencies-bun/action.yml +++ b/.github/actions/install-dependencies-bun/action.yml @@ -30,7 +30,7 @@ runs: echo "node-modules-primary-key=${{ runner.os }}-node_modules-${{ hashFiles('bun.lock') }}" >> $GITHUB_OUTPUT shell: bash id: cache-keys - - uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 + - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 if: inputs.use-cache == 'true' id: cache-restore-bun with: @@ -38,7 +38,7 @@ runs: key: ${{ steps.cache-keys.outputs.download-cache-primary-key }} restore-keys: | ${{ runner.os }}-bun- - - uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 + - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 if: inputs.use-cache == 'true' id: cache-restore-node-modules with: diff --git a/.github/actions/install-dependencies/action.yml b/.github/actions/install-dependencies/action.yml index 6cbdb82..c0bbe9a 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -30,7 +30,7 @@ runs: echo "node-modules-primary-key=${{ runner.os }}-node_modules-${{ hashFiles('yarn.lock') }}" >> $GITHUB_OUTPUT shell: bash id: cache-keys - - uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 + - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 if: inputs.use-cache == 'true' id: cache-restore-yarn with: @@ -38,7 +38,7 @@ runs: key: ${{ steps.cache-keys.outputs.download-cache-primary-key }} restore-keys: | ${{ runner.os }}-yarn- - - uses: actions/cache/restore@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 + - uses: actions/cache/restore@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 if: inputs.use-cache == 'true' id: cache-restore-node-modules with: diff --git a/.github/actions/save-dependencies/action.yml b/.github/actions/save-dependencies/action.yml index 94b08ca..7ed14d0 100644 --- a/.github/actions/save-dependencies/action.yml +++ b/.github/actions/save-dependencies/action.yml @@ -18,11 +18,11 @@ runs: run: rm -rf node_modules && mkdir node_modules shell: bash - name: Save dependencies - uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 + uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 with: path: ${{ inputs.download-cache-dir }} key: ${{ inputs.download-cache-primary-key }} - - uses: actions/cache/save@cdf6c1fa76f9f475f3d7449005a359c84ca0f306 # v5 + - uses: actions/cache/save@668228422ae6a00e4ad889ee87cd7109ec5666a7 # v5 with: path: | node_modules