Skip to content

Commit f09179a

Browse files
chore(deps): update actions/cache digest to 0057852
1 parent c2f4803 commit f09179a

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/actions/install-dependencies-bun/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ runs:
2525
- run: echo "dir=$(bun pm cache)" >> $GITHUB_OUTPUT
2626
shell: bash
2727
id: bun-cache-dir
28-
- uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
28+
- uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2929
if: inputs.use-cache == 'true'
3030
id: cache-restore-bun
3131
with:
3232
path: ${{ steps.bun-cache-dir.outputs.dir }}
3333
key: ${{ runner.os }}-bun-${{ hashFiles('bun.lock') }}
3434
restore-keys: |
3535
${{ runner.os }}-bun-
36-
- uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
36+
- uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
3737
if: inputs.use-cache == 'true'
3838
id: cache-restore-node-modules
3939
with:

.github/actions/install-dependencies/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ runs:
2525
- run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
2626
shell: bash
2727
id: yarn-cache-dir
28-
- uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
28+
- uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2929
if: inputs.use-cache == 'true'
3030
id: cache-restore-yarn
3131
with:
3232
path: ${{ steps.yarn-cache-dir.outputs.dir }}
3333
key: ${{ runner.os }}-yarn-${{ hashFiles('yarn.lock') }}
3434
restore-keys: |
3535
${{ runner.os }}-yarn-
36-
- uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
36+
- uses: actions/cache/restore@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
3737
if: inputs.use-cache == 'true'
3838
id: cache-restore-node-modules
3939
with:

.github/actions/save-dependencies/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ runs:
1818
run: rm -rf node_modules && mkdir node_modules
1919
shell: bash
2020
- name: Save dependencies
21-
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
21+
uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2222
with:
2323
path: ${{ inputs.download-cache-dir }}
2424
key: ${{ inputs.download-cache-primary-key }}
25-
- uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
25+
- uses: actions/cache/save@0057852bfaa89a56745cba8c7296529d2fc39830 # v4
2626
with:
2727
path: |
2828
node_modules

0 commit comments

Comments
 (0)