Skip to content

Commit aac453f

Browse files
committed
Auto merge of #323 - dtolnay-contrib:checkoutv3, r=Amanieu
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. They made this a major version change (v2 to v3) because old GitHub Enterprise versions aren't necessarily compatible with Node 16, but for github.com-supplied runners (SaaS) there is no practical difference.
2 parents a41bd76 + 79ce3d4 commit aac453f

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,23 +11,23 @@ jobs:
1111
miri:
1212
runs-on: ubuntu-latest
1313
steps:
14-
- uses: actions/checkout@v2
14+
- uses: actions/checkout@v3
1515
- env:
1616
TARGET: x86_64-unknown-linux-gnu
1717
run: sh ci/miri.sh
1818

1919
rustfmt_clippy:
2020
runs-on: ubuntu-latest
2121
steps:
22-
- uses: actions/checkout@v2
22+
- uses: actions/checkout@v3
2323
- env:
2424
TARGET: i586-unknown-linux-gnu
2525
run: sh ci/tools.sh
2626

2727
test:
2828
runs-on: ${{ matrix.os }}
2929
steps:
30-
- uses: actions/checkout@v2
30+
- uses: actions/checkout@v3
3131
- uses: actions-rs/toolchain@v1
3232
with:
3333
toolchain: ${{ matrix.channel }}

0 commit comments

Comments
 (0)