From 095e5d281d61731c37f4b2492f2a1334e2c4ff7d Mon Sep 17 00:00:00 2001 From: Lucas Kent Date: Thu, 22 Feb 2024 15:09:01 +1100 Subject: [PATCH] Update GA actions --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 261a372..bf6cb36 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -20,7 +20,7 @@ jobs: name: Build test artifacts runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # By default actions/checkout checks out a merge commit. Check out the PR head instead. # https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit @@ -34,7 +34,7 @@ jobs: - name: Build and archive tests run: cargo nextest archive --archive-file nextest-archive.tar.zst - name: Upload archive to workflow - uses: actions/upload-artifact@v3 + uses: actions/upload-artifact@v4 with: name: nextest-archive path: nextest-archive.tar.zst @@ -48,7 +48,7 @@ jobs: partition: [1, 2] steps: # The source directory must be checked out. - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: # By default actions/checkout checks out a merge commit. Check out the PR head instead. # https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit @@ -60,7 +60,7 @@ jobs: - name: Install nextest uses: taiki-e/install-action@nextest - name: Download archive - uses: actions/download-artifact@v3 + uses: actions/download-artifact@v4 with: name: nextest-archive - name: Run tests