diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2023-09-18 18:27:19 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-18 18:27:19 +0200 |
| commit | 0d0f4fd8a3253b9dd39b2bcce62d6a456e2545e3 (patch) | |
| tree | 638d1e0673da10450c984b3c4322dd81471a3782 /src/ci/github-actions | |
| parent | 0a66c87bd4524d49382565b204f4c6686a3bcc77 (diff) | |
| parent | 35605299acab0c2715fa772bfdf2f3d8cfdc975d (diff) | |
| download | rust-0d0f4fd8a3253b9dd39b2bcce62d6a456e2545e3.tar.gz rust-0d0f4fd8a3253b9dd39b2bcce62d6a456e2545e3.zip | |
Rollup merge of #115663 - Gumichocopengin8:ci/update-github-action, r=Mark-Simulacrum
ci: actions/checkout@v3 to actions/checkout@v4 - Bump `actions/checkout` from v3 to v4 since v3 uses Node v16 whose support lasts until `11 Sep 2023` [Ref](https://endoflife.date/nodejs) - https://github.com/actions/checkout/releases/tag/v4.0.0
Diffstat (limited to 'src/ci/github-actions')
| -rw-r--r-- | src/ci/github-actions/ci.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ci/github-actions/ci.yml b/src/ci/github-actions/ci.yml index 1712d65ece9..973b9a0a089 100644 --- a/src/ci/github-actions/ci.yml +++ b/src/ci/github-actions/ci.yml @@ -114,7 +114,7 @@ x--expand-yaml-anchors--remove: run: git config --global core.autocrlf false - name: checkout the source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 2 @@ -707,7 +707,7 @@ jobs: if: github.event_name == 'push' && github.ref == 'refs/heads/master' && github.repository == 'rust-lang-ci/rust' steps: - name: checkout the source code - uses: actions/checkout@v3 + uses: actions/checkout@v4 with: fetch-depth: 2 |
