Skip to content

Commit 0fce9f4

Browse files
committed
Auto merge of #2092 - dtolnay-contrib:checkoutv3, r=oli-obk
Update GitHub Actions actions/checkout@v2 to v3 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.
2 parents a71a008 + 0bdf91d commit 0fce9f4

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
os: windows-latest
3333
host_target: i686-pc-windows-msvc
3434
steps:
35-
- uses: actions/checkout@v2
35+
- uses: actions/checkout@v3
3636

3737
# We install gnu-tar because BSD tar is buggy on macOS builders of GHA.
3838
# See <https://github.com/actions/cache/issues/403>.
@@ -97,7 +97,7 @@ jobs:
9797
name: check formatting (ignored by bors)
9898
runs-on: ubuntu-latest
9999
steps:
100-
- uses: actions/checkout@v2
100+
- uses: actions/checkout@v3
101101
- name: Install latest nightly
102102
uses: actions-rs/toolchain@v1
103103
with:

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ Here is an example job for GitHub Actions:
165165
name: "Miri"
166166
runs-on: ubuntu-latest
167167
steps:
168-
- uses: actions/checkout@v2
168+
- uses: actions/checkout@v3
169169
- name: Install Miri
170170
run: |
171171
rustup toolchain install nightly --component miri

0 commit comments

Comments
 (0)