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
8 changes: 4 additions & 4 deletions .github/actions/setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,13 @@ runs:
# Sticky disks restore in seconds and persist per-key across runs, which
# is what makes moon's local cache behave like a warm remote cache in CI.
- name: Mount proto toolchain cache
uses: useblacksmith/stickydisk@4c034ba57b706cf0e3b4b0ce098c2a3b1071580c # v1.4.0
uses: useblacksmith/stickydisk@6d373c96a74cbde0c99fedc5ea5d3a7ba66ba494 # v1.4.0
with:
key: ${{ github.repository }}-proto-${{ runner.os }}
path: ~/.proto

- name: Mount pnpm store cache
uses: useblacksmith/stickydisk@4c034ba57b706cf0e3b4b0ce098c2a3b1071580c # v1.4.0
uses: useblacksmith/stickydisk@6d373c96a74cbde0c99fedc5ea5d3a7ba66ba494 # v1.4.0
with:
key: ${{ github.repository }}-pnpm-store-${{ runner.os }}
path: ~/.local/share/pnpm/store
Expand All @@ -27,13 +27,13 @@ runs:
# `hashes` and `outputs` as safe to share between environments, while
# `states` holds machine-specific run state that must be rebuilt per run.
- name: Mount moon hash cache
uses: useblacksmith/stickydisk@4c034ba57b706cf0e3b4b0ce098c2a3b1071580c # v1.4.0
uses: useblacksmith/stickydisk@6d373c96a74cbde0c99fedc5ea5d3a7ba66ba494 # v1.4.0
with:
key: ${{ github.repository }}-moon-hashes-${{ runner.os }}
path: ${{ github.workspace }}/.moon/cache/hashes

- name: Mount moon output cache
uses: useblacksmith/stickydisk@4c034ba57b706cf0e3b4b0ce098c2a3b1071580c # v1.4.0
uses: useblacksmith/stickydisk@6d373c96a74cbde0c99fedc5ea5d3a7ba66ba494 # v1.4.0
with:
key: ${{ github.repository }}-moon-outputs-${{ runner.os }}
path: ${{ github.workspace }}/.moon/cache/outputs
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: ./.github/actions/setup

- name: Mount Playwright browsers
uses: useblacksmith/stickydisk@4c034ba57b706cf0e3b4b0ce098c2a3b1071580c # v1.4.0
uses: useblacksmith/stickydisk@6d373c96a74cbde0c99fedc5ea5d3a7ba66ba494 # v1.4.0
with:
key: ${{ github.repository }}-playwright-browsers-${{ runner.os }}
path: ~/.cache/ms-playwright
Expand Down