Skip to content

Commit 9d66248

Browse files
Bump the github-actions group across 1 directory with 6 updates
--- updated-dependencies: - dependency-name: actions/checkout dependency-version: 4.2.2 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: taiki-e/install-action dependency-version: 2.54.3 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: Swatinem/rust-cache dependency-version: 2.8.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: github-actions - dependency-name: codecov/codecov-action dependency-version: 5.4.3 dependency-type: direct:production update-type: version-update:semver-major dependency-group: github-actions - dependency-name: EmbarkStudios/cargo-deny-action dependency-version: 2.0.12 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions - dependency-name: github/codeql-action dependency-version: 3.29.1 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: github-actions ... Signed-off-by: dependabot[bot] <[email protected]>
1 parent f023f13 commit 9d66248

File tree

3 files changed

+12
-12
lines changed

3 files changed

+12
-12
lines changed

.github/workflows/checks.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -85,11 +85,11 @@ jobs:
8585
with:
8686
target: ${{ matrix.target }}
8787
- name: Install cargo-llvm-cov
88-
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
88+
uses: taiki-e/install-action@a27ef18d36cfa66b0af3a360104621793b41c036
8989
with:
9090
tool: cargo-llvm-cov
9191
- name: Rust cache
92-
uses: Swatinem/rust-cache@9d47c6ad4b02e050fd481d890b2ea34778fd09d6
92+
uses: Swatinem/rust-cache@98c8021b550208e191a6a3145459bfc9fb29c4c0
9393
with:
9494
shared-key: "${{matrix.rust}}-${{matrix.target}}"
9595
- name: cargo build
@@ -122,7 +122,7 @@ jobs:
122122
with:
123123
toolchain: nightly
124124
- name: Install udeps
125-
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
125+
uses: taiki-e/install-action@a27ef18d36cfa66b0af3a360104621793b41c036
126126
with:
127127
tool: cargo-udeps
128128
- name: cargo udeps
@@ -223,13 +223,13 @@ jobs:
223223
if: ${{matrix.runs_on == 'ubuntu-latest'}}
224224

225225
- name: Install bindgen-cli
226-
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
226+
uses: taiki-e/install-action@a27ef18d36cfa66b0af3a360104621793b41c036
227227
with:
228228
tool: bindgen-cli
229229
if: ${{matrix.runs_on == 'ubuntu-latest'}}
230230

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

@@ -280,7 +280,7 @@ jobs:
280280
features: ''
281281
steps:
282282
- name: Checkout sources
283-
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11
283+
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
284284
with:
285285
persist-credentials: false
286286
- name: Install nightly toolchain
@@ -289,7 +289,7 @@ jobs:
289289
toolchain: nightly
290290
components: llvm-tools-preview
291291
- name: Install cargo fuzz & rustfilt
292-
uses: taiki-e/install-action@56ab7930c591507f833cbaed864d201386d518a8
292+
uses: taiki-e/install-action@a27ef18d36cfa66b0af3a360104621793b41c036
293293
with:
294294
tool: cargo-fuzz,rustfilt
295295
- name: Run `cargo fuzz`
@@ -308,7 +308,7 @@ jobs:
308308
--format=lcov \
309309
-ignore-filename-regex="\.cargo|\.rustup" > lcov.info
310310
- name: Upload coverage to Codecov
311-
uses: codecov/codecov-action@eaaf4bedf32dbdc6b720b63067d99c4d77d6047d
311+
uses: codecov/codecov-action@18283e04ce6e62d37312384ff67231eb8fd56d24
312312
with:
313313
files: ./lcov.info
314314
fail_ci_if_error: false
@@ -321,10 +321,10 @@ jobs:
321321
runs-on: ubuntu-latest
322322
steps:
323323
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
324-
- uses: EmbarkStudios/cargo-deny-action@34899fc7ba81ca6268d5947a7a16b4649013fea1
324+
- uses: EmbarkStudios/cargo-deny-action@30f817c6f72275c6d54dc744fbca09ebc958599f
325325
with:
326326
arguments: --workspace --all-features
327-
- uses: EmbarkStudios/cargo-deny-action@34899fc7ba81ca6268d5947a7a16b4649013fea1
327+
- uses: EmbarkStudios/cargo-deny-action@30f817c6f72275c6d54dc744fbca09ebc958599f
328328
with:
329329
manifest-path: ./fuzz/Cargo.toml
330330
arguments: --all-features

.github/workflows/packaging.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ jobs:
3333
components: "llvm-tools"
3434

3535
- name: Install cross, cargo-deb and cargo-generate-rpm
36-
uses: taiki-e/install-action@7b20dfd705618832f20d29066e34aa2f2f6194c2
36+
uses: taiki-e/install-action@a27ef18d36cfa66b0af3a360104621793b41c036
3737
with:
3838
tool: cross, cargo-deb, [email protected]
3939

.github/workflows/scorecard.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,6 @@ jobs:
6060

6161
# Upload the results to GitHub's code scanning dashboard.
6262
- name: "Upload to code-scanning"
63-
uses: github/codeql-action/upload-sarif@ce28f5bb42b7a9f2c824e633a3f6ee835bab6858 # v3.29.0
63+
uses: github/codeql-action/upload-sarif@39edc492dbe16b1465b0cafca41432d857bdb31a # v3.29.1
6464
with:
6565
sarif_file: results.sarif

0 commit comments

Comments
 (0)