Skip to content

Commit 8a9821f

Browse files
authored
Merge pull request #3154 from sharkdp/fix_cargo_audit_ci
[CI] fix cargo audit failing to run successfully
2 parents 3e07483 + 75fadb8 commit 8a9821f

File tree

5 files changed

+41
-24
lines changed

5 files changed

+41
-24
lines changed

.cargo/audit.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[advisories]
2+
ignore = ["RUSTSEC-2024-0320", "RUSTSEC-2024-0421"]

.github/workflows/CICD.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -152,6 +152,7 @@ jobs:
152152
name: cargo audit
153153
runs-on: ubuntu-latest
154154
steps:
155+
- run: cargo install cargo-audit --locked
155156
- uses: actions/checkout@v4
156157
- run: cargo audit
157158

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,7 @@
4949
- Support 'statically linked binary' for aarch64 in 'Release' page, see #2992 (@tzq0301)
5050
- Update options in shell completions and the man page of `bat`, see #2995 (@akinomyoga)
5151
- Update nix dev-dependency to v0.29.0, see #3112 (@decathorpe)
52+
- Bump MSRV to [1.74](https://blog.rust-lang.org/2023/11/16/Rust-1.74.0.html), see #3154 (@keith-hall)
5253

5354
## Syntaxes
5455

Cargo.lock

Lines changed: 36 additions & 23 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ version = "0.24.0"
1010
exclude = ["assets/syntaxes/*", "assets/themes/*"]
1111
build = "build/main.rs"
1212
edition = '2021'
13-
rust-version = "1.70"
13+
rust-version = "1.74"
1414

1515
[features]
1616
default = ["application"]

0 commit comments

Comments
 (0)