diff --git a/.github/workflows/lint-ffi-bindings.yaml b/.github/workflows/lint-ffi-bindings.yaml index 2548cbbf7..efcd79b4a 100644 --- a/.github/workflows/lint-ffi-bindings.yaml +++ b/.github/workflows/lint-ffi-bindings.yaml @@ -11,7 +11,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 jobs: lint: @@ -22,8 +22,9 @@ jobs: uses: actions/checkout@v4 - name: Update rust toolchains run: rustup update - - uses: taiki-e/install-action@cargo-sarif - - uses: taiki-e/install-action@sarif-fmt + - uses: taiki-e/install-action@v2 + with: + tool: clippy-sarif,sarif-fmt - name: Cache uses: Swatinem/rust-cache@v2 with: diff --git a/.github/workflows/lint-node-bindings.yaml b/.github/workflows/lint-node-bindings.yaml index 0816cacf8..4d4f2c48e 100644 --- a/.github/workflows/lint-node-bindings.yaml +++ b/.github/workflows/lint-node-bindings.yaml @@ -8,7 +8,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 jobs: lint: @@ -19,8 +19,9 @@ jobs: uses: actions/checkout@v4 - name: Update rust toolchains run: rustup update - - uses: taiki-e/install-action@cargo-sarif - - uses: taiki-e/install-action@sarif-fmt + - uses: taiki-e/install-action@v2 + with: + tool: clippy-sarif,sarif-fmt - name: Cache uses: Swatinem/rust-cache@v2 with: diff --git a/.github/workflows/lint-wasm-bindings.yaml b/.github/workflows/lint-wasm-bindings.yaml index ac410d5e7..f6c10b7cd 100644 --- a/.github/workflows/lint-wasm-bindings.yaml +++ b/.github/workflows/lint-wasm-bindings.yaml @@ -8,7 +8,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 jobs: lint: @@ -19,8 +19,9 @@ jobs: uses: actions/checkout@v4 - name: Update rust toolchains run: rustup update - - uses: taiki-e/install-action@cargo-sarif - - uses: taiki-e/install-action@sarif-fmt + - uses: taiki-e/install-action@v2 + with: + tool: clippy-sarif,sarif-fmt - name: Cache uses: Swatinem/rust-cache@v2 with: diff --git a/.github/workflows/lint-workspace.yaml b/.github/workflows/lint-workspace.yaml index bda4c7525..1e405bdfb 100644 --- a/.github/workflows/lint-workspace.yaml +++ b/.github/workflows/lint-workspace.yaml @@ -22,7 +22,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 jobs: lint: @@ -33,8 +33,9 @@ jobs: uses: actions/checkout@v4 - name: Update rust toolchains run: rustup update - - uses: taiki-e/install-action@cargo-sarif - - uses: taiki-e/install-action@sarif-fmt + - uses: taiki-e/install-action@v2 + with: + tool: clippy-sarif,sarif-fmt - name: Cache uses: Swatinem/rust-cache@v2 with: diff --git a/.github/workflows/test-ffi-bindings.yml b/.github/workflows/test-ffi-bindings.yml index 5c576498b..ad411f614 100644 --- a/.github/workflows/test-ffi-bindings.yml +++ b/.github/workflows/test-ffi-bindings.yml @@ -22,7 +22,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 jobs: test: diff --git a/.github/workflows/test-http-api.yml b/.github/workflows/test-http-api.yml index 610e8b380..ae9717066 100644 --- a/.github/workflows/test-http-api.yml +++ b/.github/workflows/test-http-api.yml @@ -21,7 +21,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 jobs: test: diff --git a/.github/workflows/test-webassembly.yml b/.github/workflows/test-webassembly.yml index c7e4c54ac..1470ef446 100644 --- a/.github/workflows/test-webassembly.yml +++ b/.github/workflows/test-webassembly.yml @@ -17,7 +17,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 WASM_BINDGEN_TEST_TIMEOUT: 240 WASM_BINDGEN_TEST_ONLY_WEB: 1 diff --git a/.github/workflows/test-workspace.yml b/.github/workflows/test-workspace.yml index 0df941f2c..3295d7307 100644 --- a/.github/workflows/test-workspace.yml +++ b/.github/workflows/test-workspace.yml @@ -21,7 +21,7 @@ on: env: CARGO_TERM_COLOR: always CARGO_INCREMENTAL: 0 - RUSTFLAGS: -D warnings + RUSTFLAGS: -D warnings --cfg tracing_unstable CARGO_PROFILE_TEST_DEBUG: 0 jobs: test: