Skip to content

Commit e2de58d

Browse files
authored
Update Pages workflow to use latest artifact actions (#30)
1 parent e52dc94 commit e2de58d

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/deploy.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
url: ${{ steps.deployment.outputs.page_url }}
2424

2525
steps:
26-
- uses: actions/checkout@v3
26+
- uses: actions/checkout@v4
2727

2828
- name: Install Zig
2929
run: |
3030
wget -q https://ziglang.org/download/0.12.1/zig-linux-x86_64-0.12.1.tar.xz
3131
tar -xf zig-linux-x86_64-0.12.1.tar.xz
3232
33-
- uses: actions/setup-python@v4
33+
- uses: actions/setup-python@v5
3434
with:
3535
python-version: "3.10"
3636

@@ -48,10 +48,10 @@ jobs:
4848
python3 build.py
4949
5050
- name: Upload artifact
51-
uses: actions/upload-pages-artifact@v1
51+
uses: actions/upload-pages-artifact@v3
5252
with:
5353
path: build
5454

5555
- name: Deploy to GitHub Pages
5656
id: deployment
57-
uses: actions/deploy-pages@v1
57+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)