From 640a22190e7a783d4c409684cea558f081f92012 Mon Sep 17 00:00:00 2001 From: Carsten Wenderdel Date: Tue, 27 Feb 2024 08:23:34 +0100 Subject: [PATCH] Upgrade checkout action from version 3 to 4 (#190) 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 342a3fb..e0ebaa3 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 bc27b2e..1ddc0ab 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 d73ea46..68c3d1d 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 be5760e..c92d6af 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 7d3b484..6d0c478 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 8f9333f..6d34e31 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 0e43b4e..346df20 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 ee617b0..d946e86 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 5fa1374..0f33fca 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