Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
name: Audit
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install cargo-audit
run: cargo install cargo-audit
- name: Run audit check
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
container:
image: amd64/rust
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Clippy
run: rustup component add clippy
# Run different tests for the library on its own as well as
Expand Down Expand Up @@ -71,7 +71,7 @@ jobs:
env:
RUSTDOCFLAGS: "-Dwarnings"
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Run cargo doc
run: cargo doc --document-private-items --no-deps --all-features

Expand Down Expand Up @@ -107,7 +107,7 @@ jobs:
GOOGLE_SERVICE_ACCOUNT: "/tmp/gcs.json"

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

# We are forced to use docker commands instead of service containers as we need to override the entrypoints
# which is currently not supported - https://github.com/actions/runner/discussions/1872
Expand Down Expand Up @@ -180,7 +180,7 @@ jobs:
container:
image: amd64/rust
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
- name: Install clang (needed for ring)
Expand All @@ -205,7 +205,7 @@ jobs:
name: cargo test LocalFileSystem (win64)
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
submodules: true
- name: Run LocalFileSystem tests
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
name: Release Audit Tool (RAT)
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup Python
uses: actions/setup-python@v5
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
container:
image: amd64/rust
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Setup rustfmt
run: rustup component add rustfmt
- name: Format object_store
Expand All @@ -49,7 +49,7 @@ jobs:
container:
image: amd64/rust
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
- name: Install cargo-msrv
run: cargo install cargo-msrv
- name: Downgrade object_store dependencies
Expand Down
Loading