Skip to content

Commit 6dec35f

Browse files
committed
Revert "fix cache"
This reverts commit 9452182.
1 parent ad1dbec commit 6dec35f

File tree

4 files changed

+25
-20
lines changed

4 files changed

+25
-20
lines changed

.github/workflows/applications.yml

Lines changed: 10 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -49,10 +49,11 @@ jobs:
4949
cache: 'pnpm'
5050
cache-dependency-path: pnpm-lock.yaml
5151

52-
- name: Install pnpm
53-
run: |
54-
corepack enable
55-
corepack use [email protected]
52+
- name: Set up pnpm
53+
uses: pnpm/action-setup@v4
54+
with:
55+
version: 9.12.0
56+
run_install: false
5657

5758
- name: Install dependencies
5859
env:
@@ -121,10 +122,11 @@ jobs:
121122
cache: 'pnpm'
122123
cache-dependency-path: pnpm-lock.yaml
123124

124-
- name: Install pnpm
125-
run: |
126-
corepack enable
127-
corepack use [email protected]
125+
- name: Set up pnpm
126+
uses: pnpm/action-setup@v4
127+
with:
128+
version: 9.12.0
129+
run_install: false
128130

129131
- name: Run pnpm install
130132
env:

.github/workflows/lint.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,11 @@ jobs:
2323
cache: 'pnpm'
2424
cache-dependency-path: pnpm-lock.yaml
2525

26-
- name: Install pnpm
27-
run: |
28-
corepack enable
29-
corepack use [email protected]
26+
- name: Set up pnpm
27+
uses: pnpm/action-setup@v4
28+
with:
29+
version: 9.12.0
30+
run_install: false
3031

3132
- name: Install dependencies
3233
env:

.github/workflows/publish.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,11 @@ jobs:
3030
cache: 'pnpm'
3131
cache-dependency-path: pnpm-lock.yaml
3232

33-
- name: Install pnpm
34-
run: |
35-
corepack enable
36-
corepack use [email protected]
33+
- name: Set up pnpm
34+
uses: pnpm/action-setup@v4
35+
with:
36+
version: 9.12.0
37+
run_install: false
3738

3839
- name: Install dependencies
3940
env:

.github/workflows/themebuilder.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,11 @@ jobs:
2525
cache: 'pnpm'
2626
cache-dependency-path: pnpm-lock.yaml
2727

28-
- name: Install pnpm
29-
run: |
30-
corepack enable
31-
corepack use [email protected]
28+
- name: Set up pnpm
29+
uses: pnpm/action-setup@v4
30+
with:
31+
version: 9.12.0
32+
run_install: false
3233

3334
- name: Install dependencies
3435
env:

0 commit comments

Comments
 (0)