Skip to content

Commit 9b29652

Browse files
authored
Fix CI by unpinning actions/cache version (#169)
1 parent ce0fa41 commit 9b29652

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

.github/actions/install-cocoapods/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ runs:
66
steps:
77
- name: Cache cocoapods
88
id: cache-cocoapods
9-
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
9+
uses: actions/cache@v4
1010
with:
1111
path: |
1212
**/ios/Pods

.github/actions/setup/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ runs:
1010
node-version: 20
1111

1212
- name: Cache turbo build setup
13-
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
13+
uses: actions/cache@v4
1414
with:
1515
path: .turbo
1616
key: ${{ runner.os }}-turbo-${{ github.sha }}
@@ -19,7 +19,7 @@ runs:
1919
2020
- name: Cache dependencies
2121
id: yarn-cache
22-
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
22+
uses: actions/cache@v4
2323
with:
2424
path: |
2525
**/node_modules

.github/actions/use-turbo-cache/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ runs:
55
using: composite
66
steps:
77
- name: Cache turbo build setup
8-
uses: actions/cache@e12d46a63a90f2fae62d114769bbf2a179198b5c # v3.3.3
8+
uses: actions/cache@v4
99
with:
1010
path: .turbo
1111
key: ${{ runner.os }}-turbo-${{ github.sha }}

0 commit comments

Comments
 (0)