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 a71a008 commit 0bdf91d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Expand Up @@ -32,7 +32,7 @@ jobs:
os: windows-latest
host_target: i686-pc-windows-msvc
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3

# We install gnu-tar because BSD tar is buggy on macOS builders of GHA.
# See <https://github.com/actions/cache/issues/403>.
Expand Down Expand Up @@ -97,7 +97,7 @@ jobs:
name: check formatting (ignored by bors)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install latest nightly
uses: actions-rs/toolchain@v1
with:
Expand Down
2 changes: 1 addition & 1 deletion README.md
Expand Up @@ -165,7 +165,7 @@ Here is an example job for GitHub Actions:
name: "Miri"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Install Miri
run: |
rustup toolchain install nightly --component miri
Expand Down

0 comments on commit 0bdf91d

Please sign in to comment.