Skip to content

Commit d954d25

Browse files
authored
Update GitHub Actions to latest versions (#79)
- actions/checkout: v3 → v4 - actions/configure-pages: v3 → v4 - cachix/install-nix-action: v19 → v31 - actions/upload-pages-artifact: v2 → v3 - actions/deploy-pages: v2 → v4 This resolves compatibility issues with deprecated action versions and ensures the workflow uses the latest supported versions.
1 parent 4e3baf3 commit d954d25

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/static.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,19 +30,19 @@ jobs:
3030
runs-on: ubuntu-latest
3131
steps:
3232
- name: Checkout
33-
uses: actions/checkout@v3
33+
uses: actions/checkout@v4
3434
- name: Setup Pages
35-
uses: actions/configure-pages@v3
36-
- uses: cachix/install-nix-action@v19
35+
uses: actions/configure-pages@v4
36+
- uses: cachix/install-nix-action@v31
3737
with:
3838
nix_path: nixpkgs=channel:nixos-unstable
3939
- name: Build WASM
4040
run: nix-shell --run 'PATH=$(go env GOPATH)/bin:$PATH make bin/js_wasm/glj.wasm && cp bin/js_wasm/glj.wasm doc/repl/'
4141
- name: Upload artifact
42-
uses: actions/upload-pages-artifact@v2
42+
uses: actions/upload-pages-artifact@v3
4343
with:
4444
# Upload entire repository
4545
path: './doc/'
4646
- name: Deploy to GitHub Pages
4747
id: deployment
48-
uses: actions/deploy-pages@v2
48+
uses: actions/deploy-pages@v4

0 commit comments

Comments
 (0)