Skip to content

Commit c770f0f

Browse files
committed
ci: Update deployment workflow to use Node 20 actions
1 parent 2706bd8 commit c770f0f

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/deploy.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
runs-on: ubuntu-latest
3535
steps:
3636
- name: Checkout
37-
uses: actions/checkout@v3
37+
uses: actions/checkout@v4
3838
- name: Detect package manager
3939
id: detect-package-manager
4040
run: |
@@ -53,14 +53,14 @@ jobs:
5353
exit 1
5454
fi
5555
- name: Setup Node
56-
uses: actions/setup-node@v3
56+
uses: actions/setup-node@v4
5757
with:
5858
node-version: "lts/*"
5959
cache: ${{ steps.detect-package-manager.outputs.manager }}
6060
- name: Setup Pages
61-
uses: actions/configure-pages@v3
61+
uses: actions/configure-pages@v4
6262
- name: Restore cache
63-
uses: actions/cache@v3
63+
uses: actions/cache@v4
6464
with:
6565
path: |
6666
.next/cache
@@ -77,7 +77,7 @@ jobs:
7777
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
7878
BASE_URL: https://ruffle.rs
7979
- name: Upload artifact
80-
uses: actions/upload-pages-artifact@v1
80+
uses: actions/upload-pages-artifact@v3
8181
with:
8282
path: ./out
8383

@@ -91,4 +91,4 @@ jobs:
9191
steps:
9292
- name: Deploy to GitHub Pages
9393
id: deployment
94-
uses: actions/deploy-pages@v2
94+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)