Skip to content

Commit

Permalink
deps: actions/cache action to v4 (#177)
Browse files Browse the repository at this point in the history
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Feb 8, 2024
1 parent 222f2a7 commit 5ff197f
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: pnpm build:ci

- name: Save build cache
uses: actions/cache/save@v3
uses: actions/cache/save@v4
with:
path: ${{ env.dist-cache-paths }}
key: build-${{ github.sha }}
Expand All @@ -57,7 +57,7 @@ jobs:
uses: seek-oss/crackle/.github/actions/init@master

- name: Restore build cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ env.dist-cache-paths }}
key: build-${{ github.sha }}
Expand All @@ -75,15 +75,15 @@ jobs:
uses: seek-oss/crackle/.github/actions/init@master

- name: Restore build cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ env.dist-cache-paths }}
key: build-${{ github.sha }}
enableCrossOsArchive: true

- name: Cache browsers
id: browsers-cache
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: /home/runner/.cache/ms-playwright
key: browsers-${{ runner.os }}-${{ hashFiles('./pnpm-lock.yaml') }}
Expand All @@ -104,7 +104,7 @@ jobs:
uses: seek-oss/crackle/.github/actions/init@master

- name: Restore build cache
uses: actions/cache/restore@v3
uses: actions/cache/restore@v4
with:
path: ${{ env.dist-cache-paths }}
key: build-${{ github.sha }}
Expand All @@ -123,7 +123,7 @@ jobs:
run: pnpm fixtures:braid --clone --absorb

- name: Cache Braid dependencies
uses: actions/cache@v3
uses: actions/cache@v4
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: braid-${{ runner.os }}-${{ hashFiles('./pnpm-lock.yaml', './fixtures/braid-design-system/pnpm-lock.yaml') }}
Expand Down

0 comments on commit 5ff197f

Please sign in to comment.