diff --git a/.github/actions/install-dependencies-bun/action.yml b/.github/actions/install-dependencies-bun/action.yml index 70af364..a64d1f6 100644 --- a/.github/actions/install-dependencies-bun/action.yml +++ b/.github/actions/install-dependencies-bun/action.yml @@ -25,7 +25,7 @@ runs: - run: echo "dir=$(bun pm cache)" >> $GITHUB_OUTPUT shell: bash id: bun-cache-dir - - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4 + - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5 if: inputs.use-cache == 'true' id: cache-restore-bun with: @@ -33,7 +33,7 @@ runs: key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }} restore-keys: | ${{ runner.os }}-bun- - - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4 + - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # 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 f676060..07c7fa9 100644 --- a/.github/actions/install-dependencies/action.yml +++ b/.github/actions/install-dependencies/action.yml @@ -25,7 +25,7 @@ runs: - run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT shell: bash id: yarn-cache-dir - - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4 + - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # v5 if: inputs.use-cache == 'true' id: cache-restore-yarn with: @@ -33,7 +33,7 @@ runs: key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }} restore-keys: | ${{ runner.os }}-yarn- - - uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4 + - uses: actions/cache/restore@9255dc7a253b0ccc959486e2bca901246202afeb # 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 ae63bc8..eee30e3 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@5a3ec84eff668545956fd18022155c47e93e2684 # v4 + uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5 with: path: ${{ inputs.download-cache-dir }} key: ${{ inputs.download-cache-primary-key }} - - uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4 + - uses: actions/cache/save@9255dc7a253b0ccc959486e2bca901246202afeb # v5 with: path: | node_modules