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