Skip to content

Commit 12ef9bc

Browse files
build(deps): bump actions/checkout from 5 to 6 (#550)
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v5...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> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent 521f1dc commit 12ef9bc

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

.github/workflows/audit.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
name: Audit
3737
runs-on: ubuntu-latest
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- name: Install cargo-audit
4141
run: cargo install cargo-audit
4242
- name: Run audit check

.github/workflows/ci.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
container:
3737
image: amd64/rust
3838
steps:
39-
- uses: actions/checkout@v5
39+
- uses: actions/checkout@v6
4040
- name: Setup Clippy
4141
run: rustup component add clippy
4242
# Run different tests for the library on its own as well as
@@ -71,7 +71,7 @@ jobs:
7171
env:
7272
RUSTDOCFLAGS: "-Dwarnings"
7373
steps:
74-
- uses: actions/checkout@v5
74+
- uses: actions/checkout@v6
7575
- name: Run cargo doc
7676
run: cargo doc --document-private-items --no-deps --all-features
7777

@@ -107,7 +107,7 @@ jobs:
107107
GOOGLE_SERVICE_ACCOUNT: "/tmp/gcs.json"
108108

109109
steps:
110-
- uses: actions/checkout@v5
110+
- uses: actions/checkout@v6
111111

112112
# We are forced to use docker commands instead of service containers as we need to override the entrypoints
113113
# which is currently not supported - https://github.com/actions/runner/discussions/1872
@@ -180,7 +180,7 @@ jobs:
180180
container:
181181
image: amd64/rust
182182
steps:
183-
- uses: actions/checkout@v5
183+
- uses: actions/checkout@v6
184184
with:
185185
submodules: true
186186
- name: Install clang (needed for ring)
@@ -205,7 +205,7 @@ jobs:
205205
name: cargo test LocalFileSystem (win64)
206206
runs-on: windows-latest
207207
steps:
208-
- uses: actions/checkout@v5
208+
- uses: actions/checkout@v6
209209
with:
210210
submodules: true
211211
- name: Run LocalFileSystem tests

.github/workflows/dev.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ jobs:
3434
name: Release Audit Tool (RAT)
3535
runs-on: ubuntu-latest
3636
steps:
37-
- uses: actions/checkout@v5
37+
- uses: actions/checkout@v6
3838
- name: Setup Python
3939
uses: actions/setup-python@v6
4040
with:

.github/workflows/rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
container:
3838
image: amd64/rust
3939
steps:
40-
- uses: actions/checkout@v5
40+
- uses: actions/checkout@v6
4141
- name: Setup rustfmt
4242
run: rustup component add rustfmt
4343
- name: Format object_store
@@ -49,7 +49,7 @@ jobs:
4949
container:
5050
image: amd64/rust
5151
steps:
52-
- uses: actions/checkout@v5
52+
- uses: actions/checkout@v6
5353
- name: Install cargo-msrv
5454
run: cargo install cargo-msrv
5555
- name: Check

0 commit comments

Comments
 (0)