Skip to content

Commit

Permalink
Update CI workflows.
Browse files Browse the repository at this point in the history
  • Loading branch information
LambdAurora committed Feb 5, 2024
1 parent 193bfdd commit 5238a02
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 7 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Setup Deno"
uses: actions/checkout@v4
- name: "Set up Deno"
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
Expand All @@ -21,7 +21,7 @@ jobs:
run: |
./build.sh
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v4
with:
name: Artifacts
path: ./build/libs/
8 changes: 4 additions & 4 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ jobs:

steps:
- name: "Checkout"
uses: actions/checkout@v3
- name: "Setup Deno"
uses: actions/checkout@v4
- name: "Set up Deno"
uses: denoland/setup-deno@v1
with:
deno-version: v1.x
Expand All @@ -30,7 +30,7 @@ jobs:
branch: rendered
folder: build
- name: "Upload artifact"
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
name: pages
path: ./build
Expand All @@ -52,7 +52,7 @@ jobs:

steps:
- name: "Download artifacts"
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: pages
path: dist
Expand Down

0 comments on commit 5238a02

Please sign in to comment.