Skip to content
This repository was archived by the owner on Aug 17, 2025. It is now read-only.
Merged
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/build-cache/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ runs:
hash="$(find ./${{ inputs.working-directory }}/bin ! -type d | sort | xargs openssl sha256 | openssl sha256 -r | cut -d' ' -f1)"
echo "hash=$hash" >> "$GITHUB_OUTPUT"
- name: Restore Hermit Cache
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: ${{ runner.os == 'macOS' && '~/Library/Caches/hermit/cache' || '~/.cache/hermit/cache' }}
key: ${{ runner.os }}-${{ runner.arch }}-hermit-cache-${{ steps.bin-hash.outputs.hash }}
Expand All @@ -34,7 +34,7 @@ runs:
${{ runner.os }}-${{ runner.arch }}-hermit-cache-
- name: Restore Go Modules Cache
id: cache-go-modules
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: |
~/go/pkg/mod
Expand All @@ -46,7 +46,7 @@ runs:
- name: Restore Maven Modules Cache
if: ${{ inputs.enable-maven == 'true' }}
id: cache-maven
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: |
~/.m2/repository
Expand All @@ -57,7 +57,7 @@ runs:
- name: Restore pnpm Cache
id: cache-pnpm
if: ${{ inputs.enable-pnpm == 'true' }}
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: |
~/.pnpm-store
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -245,7 +245,7 @@ jobs:
uses: cashapp/activate-hermit@12a728b03ad41eace0f9abaf98a035e7e8ea2318 # ratchet:cashapp/[email protected]
- name: Restore playwright browser cache
id: cache-playwright
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/restore@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/restore@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: ~/.cache/ms-playwright
key: ${{ runner.os }}-${{ runner.arch }}-playwright-${{ hashFiles('**/pnpm-lock.yaml') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ jobs:
- name: Init Hermit
uses: cashapp/activate-hermit@12a728b03ad41eace0f9abaf98a035e7e8ea2318 # ratchet:cashapp/[email protected]

- uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache@v4
- uses: actions/cache@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/writecache.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
run: hermit install
- name: Save Hermit Cache
if: ${{ steps.hermit-hash.outputs.exists == 0 }}
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: ${{ runner.os == 'macOS' && '~/Library/Caches/hermit/cache' || '~/.cache/hermit/cache' }}
key: ${{ steps.hermit-hash.outputs.key }}
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
run: pnpm install
- name: Save pnpm Modules Cache
if: ${{ steps.pnpm-hash.outputs.exists == 0 }}
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: |
~/.pnpm-store
Expand Down Expand Up @@ -104,7 +104,7 @@ jobs:
run: npx playwright install
- name: Save Playwright Browser Cache
if: ${{ steps.playwright-hash.outputs.exists == 0 }}
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: ~/.cache/ms-playwright
key: ${{ steps.playwright-hash.outputs.key }}
Expand Down Expand Up @@ -144,7 +144,7 @@ jobs:
run: echo "cache=$(go env GOCACHE)" >> "$GITHUB_OUTPUT"
- name: Save Go Cache
if: ${{ steps.go-hash.outputs.exists == 0 }}
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: |
~/go/pkg/mod
Expand Down Expand Up @@ -178,7 +178,7 @@ jobs:
run: |
find ~/.m2/repository -type d -name "*SNAPSHOT" -exec rm -rf {} +
- name: Save Maven Modules Cache
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # v4
uses: actions/cache/save@5a3ec84eff668545956fd18022155c47e93e2684 # ratchet:actions/cache/save@0400d5f644dc74513175e3cd8d07132dd4860809 # v4
with:
path: ~/.m2/repository
key: ${{ steps.maven-hash.outputs.key }}
Loading