Skip to content

Commit

Permalink
Update GA actions
Browse files Browse the repository at this point in the history
  • Loading branch information
rukai authored and sunshowers committed Feb 22, 2024
1 parent 1881817 commit 095e5d2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand All @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 095e5d2

Please sign in to comment.