Skip to content

Commit

Permalink
build: Upgrade actions/cache to fix CI (#13197)
Browse files Browse the repository at this point in the history
  • Loading branch information
ivov authored and netroy committed Feb 17, 2025
1 parent f223966 commit 8c80122
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-postgres-mysql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
run: pnpm build:backend

- name: Cache build artifacts
uses: actions/cache/save@v4.0.0
uses: actions/cache/save@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}:db-tests
Expand Down Expand Up @@ -73,7 +73,7 @@ jobs:
uses: rharkor/[email protected]

- name: Restore cached build artifacts
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}:db-tests
Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
uses: rharkor/[email protected]

- name: Restore cached build artifacts
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}:db-tests
Expand Down Expand Up @@ -149,7 +149,7 @@ jobs:
uses: rharkor/[email protected]

- name: Restore cached build artifacts
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}:db-tests
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/e2e-reusable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ jobs:
run: pnpm cypress:install

- name: Cache build artifacts
uses: actions/cache/save@v4.0.0
uses: actions/cache/save@v4.2.0
with:
path: |
/github/home/.cache
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:
- uses: pnpm/[email protected]

- name: Restore cached pnpm modules
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.2.0
with:
path: |
/github/home/.cache
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ jobs:
run: pnpm build

- name: Cache build artifacts
uses: actions/cache/save@v4.0.0
uses: actions/cache/save@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}-release:build
Expand Down Expand Up @@ -142,7 +142,7 @@ jobs:
steps:
- uses: actions/[email protected]
- name: Restore cached build artifacts
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}-release:build
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test-workflows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: pnpm build:backend

- name: Cache build artifacts
uses: actions/cache/save@v4.0.0
uses: actions/cache/save@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}:workflow-tests
Expand Down Expand Up @@ -69,7 +69,7 @@ jobs:
uses: rharkor/[email protected]

- name: Restore cached build artifacts
uses: actions/cache/restore@v4.0.0
uses: actions/cache/restore@v4.2.0
with:
path: ./packages/**/dist
key: ${{ github.sha }}:workflow-tests
Expand Down

0 comments on commit 8c80122

Please sign in to comment.