Skip to content
This repository was archived by the owner on Mar 6, 2025. It is now read-only.

Commit db23c1d

Browse files
More actionable actions
1 parent 83d1618 commit db23c1d

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/build.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,11 +10,11 @@ jobs:
1010
steps:
1111
- uses: actions/checkout@v2
1212
- name: Npm cache
13-
uses: actions/cache@v1
13+
uses: actions/cache@v4
1414
with:
1515
path: ~/.npm
1616
key: npm-${{ hashFiles('**/package.json') }}
17-
- uses: actions/setup-node@v1
17+
- uses: actions/setup-node@v4
1818
with:
1919
node-version: 12.13.1
2020
- run: npm install

.github/workflows/pages.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,17 +12,17 @@ jobs:
1212
steps:
1313
- uses: actions/checkout@v1
1414
- name: Cache node modules
15-
uses: actions/cache@v1
15+
uses: actions/cache@v4
1616
with:
1717
path: /home/runner/.npm
1818
key: npm-cache-${{ hashFiles('**/package.json') }}
19-
- uses: actions/setup-node@v1
19+
- uses: actions/setup-node@v4
2020
with:
2121
node-version: 12.13.1
2222
- run: npm install
2323
- run: npm run build
2424
- name: Upload pages
25-
uses: actions/upload-artifact@v1
25+
uses: actions/upload-artifact@v3
2626
with:
2727
name: pages
2828
path: public

.github/workflows/publish-beta.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ jobs:
1515
steps:
1616
- uses: actions/checkout@v2
1717
- name: Npm cache
18-
uses: actions/cache@v1
18+
uses: actions/cache@v4
1919
with:
2020
path: ~/.npm
2121
key: npm-${{ hashFiles('**/package.json') }}
22-
- uses: actions/setup-node@v1
22+
- uses: actions/setup-node@v4
2323
with:
2424
node-version: 12.13.1
2525
- run: npm install

.github/workflows/publish.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
with:
2020
path: ~/.npm
2121
key: npm-${{ hashFiles('**/package.json') }}
22-
- uses: actions/setup-node@v1
22+
- uses: actions/setup-node@v4
2323
with:
2424
node-version: 12.13.1
2525
- run: npm install

0 commit comments

Comments
 (0)