Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/actions/install-dependencies-bun/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ 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:
path: ${{ steps.bun-cache-dir.outputs.dir }}
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:
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,15 @@ 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:
path: ${{ steps.yarn-cache-dir.outputs.dir }}
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:
Expand Down
4 changes: 2 additions & 2 deletions .github/actions/save-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down