diff options
| author | bors <bors@rust-lang.org> | 2024-09-09 14:35:47 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2024-09-09 14:35:47 +0000 |
| commit | 797ddd279d8d97ee4371c70d479cff88ad3e8402 (patch) | |
| tree | 683ab3395cd527e05b4ed58b40d28c2d54c6ecd9 | |
| parent | e6604ea32545c9e39a68e3617afbded677afe64d (diff) | |
| parent | 1185eb081aae651fc6324630ed01203f92100d02 (diff) | |
| download | rust-797ddd279d8d97ee4371c70d479cff88ad3e8402.tar.gz rust-797ddd279d8d97ee4371c70d479cff88ad3e8402.zip | |
Auto merge of #3872 - trivikr:actions-checkout-v4, r=RalfJung
ci: bump actions/checkout to v4 Required for using Node.js 20.x in CI * Changelog for actions/checkout@v4 https://github.com/actions/checkout/blob/main/CHANGELOG.md?rgh-link-date=2024-09-04T18%3A38%3A10Z#v400 * GitHub Blog post https://github.blog/changelog/2024-03-07-github-actions-all-actions-will-run-on-node20-instead-of-node16-by-default/ Refs: https://github.com/rust-lang/rust/pull/130124#issuecomment-2336871149
| -rw-r--r-- | src/tools/miri/.github/workflows/sysroots.yml | 2 | ||||
| -rw-r--r-- | src/tools/miri/README.md | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/tools/miri/.github/workflows/sysroots.yml b/src/tools/miri/.github/workflows/sysroots.yml index 73a10768db9..6a4f44ddd50 100644 --- a/src/tools/miri/.github/workflows/sysroots.yml +++ b/src/tools/miri/.github/workflows/sysroots.yml @@ -13,7 +13,7 @@ jobs: name: Build the sysroots runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Build the sysroots run: | cargo install -f rustup-toolchain-install-master diff --git a/src/tools/miri/README.md b/src/tools/miri/README.md index dbb0e8a2925..72555e8c40d 100644 --- a/src/tools/miri/README.md +++ b/src/tools/miri/README.md @@ -187,7 +187,7 @@ Here is an example job for GitHub Actions: name: "Miri" runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install Miri run: | rustup toolchain install nightly --component miri |
