Skip to content

Commit ae54e8c

Browse files
committed
remove broken caching
1 parent 414114a commit ae54e8c

File tree

4 files changed

+9
-21
lines changed

4 files changed

+9
-21
lines changed

.github/workflows/automate_dependabot_changeset.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,9 +37,7 @@ jobs:
3737
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
3838
with:
3939
node-version: 20
40-
cache: "yarn"
41-
corepack: true
42-
40+
4341
- name: Fetch previous commit for check
4442
run: git fetch origin '${{ github.event.pull_request.base.sha }}'
4543

.github/workflows/ci.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,7 @@ jobs:
3232
with:
3333
node-version: 20
3434
registry-url: https://registry.npmjs.org/ # Needed for auth
35-
cache: "yarn"
36-
corepack: true
35+
3736

3837
- name: Fetch previous commit for check
3938
run: git fetch origin '${{ github.event.pull_request.base.sha }}'
@@ -82,8 +81,7 @@ jobs:
8281
with:
8382
node-version: ${{ matrix.node-version }}
8483
registry-url: https://registry.npmjs.org/ # Needed for auth
85-
cache: "yarn"
86-
corepack: true
84+
8785

8886
- name: yarn install
8987
run: yarn install --immutable
@@ -148,9 +146,7 @@ jobs:
148146
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
149147
with:
150148
node-version: 20.x
151-
cache: "yarn"
152-
corepack: true
153-
149+
154150
- name: Install root dependencies
155151
run: yarn install --immutable
156152
- name: Verify lockfile duplicates

.github/workflows/release.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,7 @@ jobs:
2626
with:
2727
node-version: 20
2828
registry-url: https://registry.npmjs.org/ # Needed for auth
29-
cache: "yarn"
30-
corepack: true
31-
29+
3230
- name: Fetch previous commit for check
3331
run: git fetch origin '${{ github.event.before }}'
3432

.github/workflows/release_workspace.yml

Lines changed: 4 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,13 +46,11 @@ jobs:
4646
- name: Checkout
4747
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
4848
- name: Set up Node
49-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
49+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v4
5050
with:
5151
node-version: 20
5252
registry-url: https://registry.npmjs.org/ # Needed for auth
53-
cache: "yarn"
54-
corepack: true
55-
53+
5654
- name: Get yarn cache directory path
5755
id: yarn-cache-dir-path
5856
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT
@@ -113,13 +111,11 @@ jobs:
113111
- name: Checkout
114112
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
115113
- name: Set up Node
116-
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5
114+
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v4
117115
with:
118116
node-version: 20
119117
registry-url: https://registry.npmjs.org/ # Needed for auth
120-
cache: "yarn"
121-
corepack: true
122-
118+
123119
- name: Get yarn cache directory path
124120
id: yarn-cache-dir-path
125121
run: echo "dir=$(yarn config get cacheFolder)" >> $GITHUB_OUTPUT

0 commit comments

Comments
 (0)