Skip to content

Commit 0e7077f

Browse files
petehayes102Jan Diederich
authored andcommitted
WIP
1 parent 4d63049 commit 0e7077f

File tree

2 files changed

+22
-7
lines changed

2 files changed

+22
-7
lines changed

.github/workflows/ci.yml

Lines changed: 21 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -39,10 +39,10 @@ jobs:
3939
cargo-deny:
4040
runs-on: ubuntu-latest
4141
steps:
42-
- uses: actions/checkout@v3
43-
with:
44-
ref: ${{ inputs.checkout-ref }}
45-
- uses: EmbarkStudios/cargo-deny-action@v1
42+
- uses: actions/checkout@v3
43+
with:
44+
ref: ${{ inputs.checkout-ref }}
45+
- uses: EmbarkStudios/cargo-deny-action@v1
4646

4747
fmt:
4848
runs-on: ubuntu-latest
@@ -74,7 +74,7 @@ jobs:
7474
- uses: ./.github/actions/setup-rust
7575
with:
7676
components: clippy
77-
toolchain: 1.77.2 # MSRV, Minimally Supported Rust Version. Make sure to update README.md and clippy.toml
77+
toolchain: 1.82.0 # MSRV, Minimally Supported Rust Version. Make sure to update README.md and clippy.toml
7878
- name: Run clippy
7979
run: cargo clippy --locked --all-targets --all-features --workspace -- -D warnings
8080
test:
@@ -402,7 +402,22 @@ jobs:
402402
github-token: ${{ secrets.GITHUB_TOKEN }}
403403

404404
conclusion:
405-
needs: [shellcheck, fmt, clippy, test, generate-matrix, build, publish, check, remote, bisect, docker-in-docker, foreign, podman]
405+
needs:
406+
[
407+
shellcheck,
408+
fmt,
409+
clippy,
410+
test,
411+
generate-matrix,
412+
build,
413+
publish,
414+
check,
415+
remote,
416+
bisect,
417+
docker-in-docker,
418+
foreign,
419+
podman,
420+
]
406421
if: always()
407422
runs-on: ubuntu-latest
408423
steps:

clippy.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,4 @@ disallowed-methods = [
22
{ path = "std::path::Path::display", reason = "incorrect handling of non-Unicode paths, use path.to_utf8() or debug (`{path:?}`) instead" },
33
]
44
allow-unwrap-in-tests = true
5-
msrv = "1.77.2"
5+
msrv = "1.82.0"

0 commit comments

Comments
 (0)