Skip to content

Commit 56a26e8

Browse files
committed
Update GitHub Actions to use stable versions
1 parent 9d66e9a commit 56a26e8

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

.github/workflows/deploy.yml

+7-2
Original file line numberDiff line numberDiff line change
@@ -20,18 +20,23 @@ jobs:
2020
steps:
2121
- name: Checkout
2222
uses: actions/checkout@v4
23+
2324
- name: Setup Node
2425
uses: actions/setup-node@v4
2526
with:
2627
node-version: "18"
28+
2729
- name: Setup Pages
2830
uses: actions/configure-pages@v4
31+
2932
- name: Install dependencies
3033
run: npm install
34+
3135
- name: Build with Next.js
3236
run: npm run build
37+
3338
- name: Upload artifact
34-
uses: actions/upload-pages-artifact@v2
39+
uses: actions/upload-pages-artifact@v1
3540
with:
3641
path: ./out
3742

@@ -44,4 +49,4 @@ jobs:
4449
steps:
4550
- name: Deploy to GitHub Pages
4651
id: deployment
47-
uses: actions/deploy-pages@v2
52+
uses: actions/deploy-pages@v1

0 commit comments

Comments
 (0)