Skip to content

Commit 9452182

Browse files
committed
fix cache
1 parent 03471d4 commit 9452182

File tree

4 files changed

+20
-25
lines changed

4 files changed

+20
-25
lines changed

.github/workflows/applications.yml

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

52-
- name: Set up pnpm
53-
uses: pnpm/action-setup@v4
54-
with:
55-
version: 9.12.0
56-
run_install: false
52+
- name: Install pnpm
53+
run: |
54+
corepack enable
55+
corepack use [email protected]
5756
5857
- name: Install dependencies
5958
env:
@@ -122,11 +121,10 @@ jobs:
122121
cache: 'pnpm'
123122
cache-dependency-path: pnpm-lock.yaml
124123

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

.github/workflows/lint.yml

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

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

.github/workflows/publish.yml

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

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

.github/workflows/themebuilder.yml

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

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

0 commit comments

Comments
 (0)