mirror of
https://github.com/servo/servo.git
synced 2025-08-04 13:10:20 +01:00
Prevent lint job from trying to use incompatible cargo-deny version (#35632)
Lint jobs were failing because they would try to install the latest version of cargo-deny (0.18.0), which requries rustc 1.85.0 or newer, while the currently active rustc version is 1.83.0. Therefore this makes it install version 0.17 instead. Signed-off-by: Oriol Brufau <obrufau@igalia.com>
This commit is contained in:
parent
9efe7ad45d
commit
e74bb8de15
1 changed files with 2 additions and 0 deletions
2
.github/workflows/lint.yml
vendored
2
.github/workflows/lint.yml
vendored
|
@ -37,6 +37,8 @@ jobs:
|
||||||
uses: baptiste0928/cargo-install@v3
|
uses: baptiste0928/cargo-install@v3
|
||||||
with:
|
with:
|
||||||
crate: cargo-deny
|
crate: cargo-deny
|
||||||
|
# Version 0.18 requires rustc 1.85, but we are still using rustc 1.83.
|
||||||
|
version: 0.17
|
||||||
locked: true
|
locked: true
|
||||||
- name: Bootstrap dependencies
|
- name: Bootstrap dependencies
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue