This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow-rs-object-store.git


The following commit(s) were added to refs/heads/main by this push:
     new f554e60  ci: use --locked when installing cargo-msrv and cargo-audit 
(#746)
f554e60 is described below

commit f554e600e83a43275367db3f6b0eb15343865873
Author: Kevin Liu <[email protected]>
AuthorDate: Fri Jun 12 07:04:10 2026 -0400

    ci: use --locked when installing cargo-msrv and cargo-audit (#746)
---
 .github/workflows/audit.yml | 2 +-
 .github/workflows/rust.yml  | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/.github/workflows/audit.yml b/.github/workflows/audit.yml
index d568fcc..9f63155 100644
--- a/.github/workflows/audit.yml
+++ b/.github/workflows/audit.yml
@@ -38,6 +38,6 @@ jobs:
     steps:
       - uses: actions/checkout@v6
       - name: Install cargo-audit
-        run: cargo install cargo-audit
+        run: cargo install cargo-audit --locked
       - name: Run audit check
         run: cargo audit
diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml
index 648da5d..0b439a9 100644
--- a/.github/workflows/rust.yml
+++ b/.github/workflows/rust.yml
@@ -51,7 +51,7 @@ jobs:
     steps:
       - uses: actions/checkout@v6
       - name: Install cargo-msrv
-        run: cargo install cargo-msrv
+        run: cargo install cargo-msrv --locked
       - name: Check
         run: |
           # run `cargo msrv verify` to see problems

Reply via email to