From 0bdf91ddc73d80fcd5359bc9ba4882941529d928 Mon Sep 17 00:00:00 2001 From: David Tolnay Date: Fri, 29 Apr 2022 20:25:04 -0700 Subject: [PATCH] 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. --- .github/workflows/ci.yml | 4 ++-- README.md | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94b9dd6fe5..0904afc820 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -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 . @@ -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: diff --git a/README.md b/README.md index ca14f02d86..6d5ee30e49 100644 --- a/README.md +++ b/README.md @@ -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