Skip to content

Commit

Permalink
ci: update all workflow plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
hraban committed Feb 29, 2024
1 parent 4a8a51b commit 4e7b0cc
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
uses: actions/checkout@v4
- name: Install Nix
uses: DeterminateSystems/nix-installer-action@v9
- name: Configure Nix cache
Expand All @@ -42,13 +42,13 @@ jobs:
(cd result/bin && tar cvf $OLDPWD/executables.tar *)
(cd result/doc && tar cvf $OLDPWD/website.tar index.html style.css)
-
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
name: "Upload website artifacts"
with:
name: website-${{github.sha}}
path: website.tar
-
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
name: "Upload binary artifacts"
with:
name: executables-${{github.sha}}
Expand All @@ -65,7 +65,7 @@ jobs:
- macos-latest
runs-on: ${{ matrix.config }}
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: executables-${{github.sha}}
- name: Unpack artifacts
Expand All @@ -89,13 +89,13 @@ jobs:
steps:
-
name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v4
with:
ref: gh-pages
- name: Remove files before artifact download
run: rm -f artifacts.tar
-
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
name: website-${{github.sha}}
- name: Unpack artifacts
Expand Down

0 comments on commit 4e7b0cc

Please sign in to comment.