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
10 changes: 7 additions & 3 deletions .github/workflows/audit.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,15 @@ on:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- "deny.toml"
- ".github/workflows/audit.yml"

pull_request:
paths:
- "**/Cargo.toml"
- "**/Cargo.lock"
- "deny.toml"
- ".github/workflows/audit.yml"

merge_group:

Expand All @@ -41,9 +45,9 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
- name: Install cargo-audit
- name: Install cargo-deny
uses: taiki-e/install-action@f535147c22906d77695e11cb199e764aa610a4fc # v2.62.46
with:
tool: cargo-audit
tool: cargo-deny@0.19.8
- name: Run audit check
Comment thread
reidkaufmann marked this conversation as resolved.
run: cargo audit
run: cargo deny check advisories
2 changes: 1 addition & 1 deletion .github/workflows/dependencies.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
- name: Check dependencies
run: |
cd dev/depcheck
cargo run
cargo run --locked

detect-unused-dependencies:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ jobs:
- name: Setup wasm-pack
uses: taiki-e/install-action@f535147c22906d77695e11cb199e764aa610a4fc # v2.62.46
with:
tool: wasm-pack
tool: wasm-pack@0.15.0
- name: Run tests with headless mode
working-directory: ./datafusion/wasmtest
run: |
Expand Down Expand Up @@ -777,7 +777,7 @@ jobs:
- name: Install cargo-msrv
uses: taiki-e/install-action@f535147c22906d77695e11cb199e764aa610a4fc # v2.62.46
with:
tool: cargo-msrv
tool: cargo-msrv@0.19.1

- name: Check datafusion
working-directory: datafusion/core
Expand Down
Loading
Loading