Skip to content

Commit 5cd0059

Browse files
build(deps): bump actions/checkout from 4 to 5
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](actions/checkout@v4...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent 64cbe73 commit 5cd0059

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@v4
39+
- uses: actions/checkout@v5
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@v4
39+
- uses: actions/checkout@v5
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@v4
74+
- uses: actions/checkout@v5
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@v4
110+
- uses: actions/checkout@v5
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@v4
183+
- uses: actions/checkout@v5
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@v4
208+
- uses: actions/checkout@v5
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@v4
37+
- uses: actions/checkout@v5
3838
- name: Setup Python
3939
uses: actions/setup-python@v5
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@v4
40+
- uses: actions/checkout@v5
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@v4
52+
- uses: actions/checkout@v5
5353
- name: Install cargo-msrv
5454
run: cargo install cargo-msrv
5555
- name: Downgrade object_store dependencies

0 commit comments

Comments
 (0)