Skip to content

Commit

Permalink
Update GitHub Actions actions/checkout@v2 to v3
Browse files Browse the repository at this point in the history
The v2 implementation uses Node 12, which is end-of-life on April 30, 2022.
See https://nodejs.org/en/about/releases/. Update to v3, which is based on
Node 16 whose support lasts until April 30, 2024.
  • Loading branch information
dtolnay committed Apr 30, 2022
1 parent 21bfd9a commit 79ce3d4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,23 @@ jobs:
miri:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- env:
TARGET: x86_64-unknown-linux-gnu
run: sh ci/miri.sh

rustfmt_clippy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- env:
TARGET: i586-unknown-linux-gnu
run: sh ci/tools.sh

test:
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- uses: actions-rs/toolchain@v1
with:
toolchain: ${{ matrix.channel }}
Expand Down

0 comments on commit 79ce3d4

Please sign in to comment.