Skip to content

Commit bccfe24

Browse files
committed
Update GitHub Actions to latest versions to fix deprecated artifact action
1 parent 67fadda commit bccfe24

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/deploy.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,10 +19,10 @@ jobs:
1919
runs-on: ubuntu-latest
2020
steps:
2121
- name: Checkout
22-
uses: actions/checkout@v3
22+
uses: actions/checkout@v4
2323

2424
- name: Setup Node.js
25-
uses: actions/setup-node@v3
25+
uses: actions/setup-node@v4
2626
with:
2727
node-version: "18"
2828
cache: "npm"
@@ -37,12 +37,12 @@ jobs:
3737
run: npm run build
3838

3939
- name: Setup Pages
40-
uses: actions/configure-pages@v3
40+
uses: actions/configure-pages@v4
4141
with:
4242
static_site_generator: next
4343

4444
- name: Upload artifact
45-
uses: actions/upload-pages-artifact@v2
45+
uses: actions/upload-pages-artifact@v3
4646
with:
4747
path: ./out
4848

@@ -55,4 +55,4 @@ jobs:
5555
steps:
5656
- name: Deploy to GitHub Pages
5757
id: deployment
58-
uses: actions/deploy-pages@v2
58+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)