Skip to content

Bump the github-actions group across 1 directory with 6 updates #1920

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Closed
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
20 changes: 10 additions & 10 deletions .github/workflows/checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -85,11 +85,11 @@ jobs:
with:
target: ${{ matrix.target }}
- name: Install cargo-llvm-cov
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
uses: taiki-e/install-action@f3a27926ea13d7be3ee2f4cbb925883cf9442b56
with:
tool: cargo-llvm-cov
- name: Rust cache
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
with:
shared-key: "${{matrix.rust}}-${{matrix.target}}"
- name: cargo build
Expand Down Expand Up @@ -122,7 +122,7 @@ jobs:
with:
toolchain: nightly
- name: Install udeps
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
uses: taiki-e/install-action@f3a27926ea13d7be3ee2f4cbb925883cf9442b56
with:
tool: cargo-udeps
- name: cargo udeps
Expand Down Expand Up @@ -223,13 +223,13 @@ jobs:
if: ${{matrix.runs_on == 'ubuntu-latest'}}

- name: Install bindgen-cli
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
uses: taiki-e/install-action@f3a27926ea13d7be3ee2f4cbb925883cf9442b56
with:
tool: bindgen-cli
if: ${{matrix.runs_on == 'ubuntu-latest'}}

- name: Rust cache
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
with:
shared-key: "stable-${{matrix.target}}"

Expand Down Expand Up @@ -280,7 +280,7 @@ jobs:
features: ''
steps:
- name: Checkout sources
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
persist-credentials: false
- name: Install nightly toolchain
Expand All @@ -289,7 +289,7 @@ jobs:
toolchain: nightly
components: llvm-tools-preview
- name: Install cargo fuzz & rustfilt
uses: taiki-e/install-action@56ab7930c591507f833cbaed864d201386d518a8
uses: taiki-e/install-action@f3a27926ea13d7be3ee2f4cbb925883cf9442b56
with:
tool: cargo-fuzz,rustfilt
- name: Run `cargo fuzz`
Expand All @@ -308,7 +308,7 @@ jobs:
--format=lcov \
-ignore-filename-regex="\.cargo|\.rustup" > lcov.info
- name: Upload coverage to Codecov
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
with:
files: ./lcov.info
fail_ci_if_error: false
Expand All @@ -321,10 +321,10 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
- uses: EmbarkStudios/cargo-deny-action@34899fc7ba81ca6268d5947a7a16b4649013fea1
- uses: EmbarkStudios/cargo-deny-action@30f817c6f72275c6d54dc744fbca09ebc958599f
with:
arguments: --workspace --all-features
- uses: EmbarkStudios/cargo-deny-action@34899fc7ba81ca6268d5947a7a16b4649013fea1
- uses: EmbarkStudios/cargo-deny-action@30f817c6f72275c6d54dc744fbca09ebc958599f
with:
manifest-path: ./fuzz/Cargo.toml
arguments: --all-features
2 changes: 1 addition & 1 deletion .github/workflows/packaging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
components: "llvm-tools"

- name: Install cross, cargo-deb and cargo-generate-rpm
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
uses: taiki-e/install-action@f3a27926ea13d7be3ee2f4cbb925883cf9442b56
with:
tool: cross, cargo-deb, [email protected]

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/scorecard.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,6 @@ jobs:

# Upload the results to GitHub's code scanning dashboard.
- name: "Upload to code-scanning"
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
uses: github/codeql-action/upload-sarif@181d5eefc20863364f96762470ba6f862bdef56b # v3.29.2
with:
sarif_file: results.sarif
Loading