From 6131f2d490ec9766617014725aa038a78dac58da Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sat, 21 Feb 2026 22:16:06 +0000 Subject: [PATCH] Bump actions/checkout from 4 to 6 Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v4...v6) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '6' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cargo-build.yml | 2 +- .github/workflows/cargo-clippy.yml | 2 +- .github/workflows/cargo-fmt.yml | 2 +- .github/workflows/cargo-test.yml | 2 +- .github/workflows/make-release.yml | 4 ++-- .github/workflows/update-spec-for-repos.yml | 4 ++-- .github/workflows/validate-openapi-spec.yml | 2 +- 7 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/cargo-build.yml b/.github/workflows/cargo-build.yml index 9a49f6e..209a708 100644 --- a/.github/workflows/cargo-build.yml +++ b/.github/workflows/cargo-build.yml @@ -31,7 +31,7 @@ jobs: # Remove this when it no longer FTBFS on `ring` in CI. CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 - name: Install dependencies run: | diff --git a/.github/workflows/cargo-clippy.yml b/.github/workflows/cargo-clippy.yml index a3fe8d6..23dd678 100644 --- a/.github/workflows/cargo-clippy.yml +++ b/.github/workflows/cargo-clippy.yml @@ -30,7 +30,7 @@ jobs: # Remove this when it no longer FTBFS on `ring` in CI. CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: clippy diff --git a/.github/workflows/cargo-fmt.yml b/.github/workflows/cargo-fmt.yml index 45de4bc..9cd8618 100644 --- a/.github/workflows/cargo-fmt.yml +++ b/.github/workflows/cargo-fmt.yml @@ -31,7 +31,7 @@ jobs: # Remove this when it no longer FTBFS on `ring` in CI. CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 with: components: rustfmt diff --git a/.github/workflows/cargo-test.yml b/.github/workflows/cargo-test.yml index fb8da17..0db328e 100644 --- a/.github/workflows/cargo-test.yml +++ b/.github/workflows/cargo-test.yml @@ -28,7 +28,7 @@ jobs: # Remove this when it no longer FTBFS on `ring` in CI. CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions-rust-lang/setup-rust-toolchain@v1 - uses: taiki-e/install-action@cargo-llvm-cov - uses: taiki-e/install-action@nextest diff --git a/.github/workflows/make-release.yml b/.github/workflows/make-release.yml index 0cc3eb5..04d7085 100644 --- a/.github/workflows/make-release.yml +++ b/.github/workflows/make-release.yml @@ -13,7 +13,7 @@ jobs: name: make release runs-on: ${{ matrix.os }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: 'Authenticate to Google Cloud' uses: 'google-github-actions/auth@v3.0.0' with: @@ -91,7 +91,7 @@ jobs: needs: [makerelease] name: createrelease steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - name: Install latest nightly uses: dtolnay/rust-toolchain@stable - uses: actions/download-artifact@v4 diff --git a/.github/workflows/update-spec-for-repos.yml b/.github/workflows/update-spec-for-repos.yml index 3e76f5f..91f1ee0 100644 --- a/.github/workflows/update-spec-for-repos.yml +++ b/.github/workflows/update-spec-for-repos.yml @@ -26,9 +26,9 @@ jobs: app-id: ${{ secrets.GH_ORG_APP_ID }} private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }} owner: ${{ github.repository_owner }} - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 # Checkout the repo since we will want to update the file there. - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 with: repository: 'kittycad/${{ matrix.repo }}' path: ${{ matrix.repo }} diff --git a/.github/workflows/validate-openapi-spec.yml b/.github/workflows/validate-openapi-spec.yml index 8c00725..4787198 100644 --- a/.github/workflows/validate-openapi-spec.yml +++ b/.github/workflows/validate-openapi-spec.yml @@ -16,7 +16,7 @@ jobs: format: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v6 - uses: actions/setup-node@v6.2.0 with: node-version: '18'