From 0fef2ff9c2e980230a3b1ebbc3565a413bb05674 Mon Sep 17 00:00:00 2001 From: Hraban Luyat Date: Thu, 29 Feb 2024 13:35:40 -0500 Subject: [PATCH] ci: update all workflow plugins --- .github/workflows/ci.yml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4e2cf67..85a58b4 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 @@ -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}} @@ -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 @@ -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