Skip to content

Commit e765b59

Browse files
committed
attempting to fix pipelines (actions/setup-node#1275)
1 parent 8cae084 commit e765b59

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/deploy-master.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,14 +19,15 @@ jobs:
1919
- uses: actions/checkout@v2
2020
with:
2121
lfs: true
22-
- uses: actions/setup-node@v2
22+
- uses: actions/setup-node@v4
2323
with:
24-
node-version: '14'
25-
cache: 'npm'
24+
node-version: "14"
25+
cache: "npm"
2626
- run: npm ci
2727
- run: npm run build:master
2828
- uses: JamesIves/github-pages-deploy-action@v4
2929
with:
3030
branch: gh-pages
3131
folder: dist
3232
single-commit: true
33+

.github/workflows/deploy-release.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
- uses: actions/checkout@v2
2020
with:
2121
lfs: true
22-
- uses: actions/setup-node@v2
22+
- uses: actions/setup-node@v4
2323
with:
24-
node-version: '14'
25-
cache: 'npm'
24+
node-version: "14"
25+
cache: "npm"
2626
- run: npm ci
2727
- run: npm run build:release
2828
- uses: JamesIves/github-pages-deploy-action@v4
@@ -32,3 +32,4 @@ jobs:
3232
branch: master
3333
folder: dist
3434
single-commit: true
35+

0 commit comments

Comments
 (0)