Skip to content

Commit 0d3d91e

Browse files
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](actions/checkout@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] <support@github.com>
1 parent 6d064ec commit 0d3d91e

7 files changed

Lines changed: 9 additions & 9 deletions

File tree

.github/workflows/cargo-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Remove this when it no longer FTBFS on `ring` in CI.
3232
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
- uses: actions-rust-lang/setup-rust-toolchain@v1
3636
- name: Install dependencies
3737
run: |

.github/workflows/cargo-clippy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ jobs:
3030
# Remove this when it no longer FTBFS on `ring` in CI.
3131
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3232
steps:
33-
- uses: actions/checkout@v4
33+
- uses: actions/checkout@v6
3434
- uses: actions-rust-lang/setup-rust-toolchain@v1
3535
with:
3636
components: clippy

.github/workflows/cargo-fmt.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Remove this when it no longer FTBFS on `ring` in CI.
3232
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3333
steps:
34-
- uses: actions/checkout@v4
34+
- uses: actions/checkout@v6
3535
- uses: actions-rust-lang/setup-rust-toolchain@v1
3636
with:
3737
components: rustfmt

.github/workflows/cargo-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
# Remove this when it no longer FTBFS on `ring` in CI.
2929
CARGO_PROFILE_TEST_BUILD_OVERRIDE_DEBUG: true
3030
steps:
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
- uses: actions-rust-lang/setup-rust-toolchain@v1
3333
- uses: taiki-e/install-action@cargo-llvm-cov
3434
- uses: taiki-e/install-action@nextest

.github/workflows/make-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
name: make release
1414
runs-on: ${{ matrix.os }}
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v6
1717
- name: 'Authenticate to Google Cloud'
1818
uses: 'google-github-actions/auth@v2.1.7'
1919
with:
@@ -91,7 +91,7 @@ jobs:
9191
needs: [makerelease]
9292
name: createrelease
9393
steps:
94-
- uses: actions/checkout@v4
94+
- uses: actions/checkout@v6
9595
- name: Install latest nightly
9696
uses: dtolnay/rust-toolchain@stable
9797
- uses: actions/download-artifact@v4

.github/workflows/update-spec-for-repos.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
app-id: ${{ secrets.GH_ORG_APP_ID }}
2727
private-key: ${{ secrets.GH_ORG_APP_PRIVATE_KEY }}
2828
owner: ${{ github.repository_owner }}
29-
- uses: actions/checkout@v4
29+
- uses: actions/checkout@v6
3030
# Checkout the repo since we will want to update the file there.
31-
- uses: actions/checkout@v4
31+
- uses: actions/checkout@v6
3232
with:
3333
repository: 'kittycad/${{ matrix.repo }}'
3434
path: ${{ matrix.repo }}

.github/workflows/validate-openapi-spec.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
format:
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: actions/checkout@v4
19+
- uses: actions/checkout@v6
2020
- uses: actions/setup-node@v4.1.0
2121
with:
2222
node-version: '18'

0 commit comments

Comments
 (0)