From ee2a7cc1f9a5d8a0646fbf38cddfdac4b2053912 Mon Sep 17 00:00:00 2001 From: Carsten Wenderdel Date: Mon, 26 Feb 2024 22:42:39 +0100 Subject: [PATCH] Upgrade checkout action from version 3 to 4 This fixes issue #189. This is necessary because GitHub actions are going to drop support for Node.js 16. Version 4 uses Node.js 20. See https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/ --- .github/workflows/buildjet.yml | 2 +- .github/workflows/check-dist.yml | 2 +- .github/workflows/coverage.yml | 2 +- .github/workflows/git-registry.yml | 2 +- .github/workflows/install.yml | 2 +- .github/workflows/simple.yml | 2 +- .github/workflows/target-dir.yml | 2 +- .github/workflows/workspaces.yml | 2 +- README.md | 2 +- 9 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/buildjet.yml b/.github/workflows/buildjet.yml index 342a3fb8..e0ebaa30 100644 --- a/.github/workflows/buildjet.yml +++ b/.github/workflows/buildjet.yml @@ -16,7 +16,7 @@ jobs: CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal --no-self-update diff --git a/.github/workflows/check-dist.yml b/.github/workflows/check-dist.yml index bc27b2e3..1ddc0ab1 100644 --- a/.github/workflows/check-dist.yml +++ b/.github/workflows/check-dist.yml @@ -15,7 +15,7 @@ jobs: check-dist: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Setup Node.js 20.x uses: actions/setup-node@v3 diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index d73ea468..68c3d1d7 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -16,7 +16,7 @@ jobs: CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal --component llvm-tools-preview --no-self-update diff --git a/.github/workflows/git-registry.yml b/.github/workflows/git-registry.yml index be5760ed..c92d6af1 100644 --- a/.github/workflows/git-registry.yml +++ b/.github/workflows/git-registry.yml @@ -17,7 +17,7 @@ jobs: CARGO_REGISTRIES_CRATES_IO_PROTOCOL: git steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal --no-self-update diff --git a/.github/workflows/install.yml b/.github/workflows/install.yml index 7d3b484f..6d0c478a 100644 --- a/.github/workflows/install.yml +++ b/.github/workflows/install.yml @@ -16,7 +16,7 @@ jobs: CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal --no-self-update diff --git a/.github/workflows/simple.yml b/.github/workflows/simple.yml index 8f9333f7..6d34e313 100644 --- a/.github/workflows/simple.yml +++ b/.github/workflows/simple.yml @@ -16,7 +16,7 @@ jobs: CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal --no-self-update diff --git a/.github/workflows/target-dir.yml b/.github/workflows/target-dir.yml index 0e43b4e3..346df201 100644 --- a/.github/workflows/target-dir.yml +++ b/.github/workflows/target-dir.yml @@ -16,7 +16,7 @@ jobs: CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal --no-self-update diff --git a/.github/workflows/workspaces.yml b/.github/workflows/workspaces.yml index ee617b07..d946e860 100644 --- a/.github/workflows/workspaces.yml +++ b/.github/workflows/workspaces.yml @@ -16,7 +16,7 @@ jobs: CARGO_TERM_COLOR: always steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: rustup toolchain install stable --profile minimal --target wasm32-unknown-unknown --no-self-update diff --git a/README.md b/README.md index 5fa13746..0f33fcae 100644 --- a/README.md +++ b/README.md @@ -6,7 +6,7 @@ sensible defaults. ## Example usage ```yaml -- uses: actions/checkout@v3 +- uses: actions/checkout@v4 # selecting a toolchain either by action or manual `rustup` calls should happen # before the plugin, as the cache uses the current rustc version as its cache key