-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
12 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,64 +27,36 @@ env: | |
|
||
jobs: | ||
check-advisories: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- uses: actions-rs/[email protected] | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
crate: cargo-deny | ||
use-tool-cache: true | ||
- name: Check for security advisories and unmaintained crates | ||
run: cargo deny check advisories | ||
command: check advisories | ||
|
||
check-bans: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- uses: actions-rs/[email protected] | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
crate: cargo-deny | ||
use-tool-cache: true | ||
- name: Check for banned and duplicated dependencies | ||
run: cargo deny check bans | ||
command: check bans | ||
|
||
check-licenses: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- uses: actions-rs/[email protected] | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
crate: cargo-deny | ||
use-tool-cache: true | ||
- name: Check for unauthorized licenses | ||
run: cargo deny check licenses | ||
command: check licenses | ||
|
||
check-sources: | ||
runs-on: ubuntu-latest | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rs/toolchain@v1 | ||
with: | ||
toolchain: stable | ||
override: true | ||
- uses: actions-rs/[email protected] | ||
- uses: EmbarkStudios/cargo-deny-action@v1 | ||
with: | ||
crate: cargo-deny | ||
use-tool-cache: true | ||
- name: Checked for unauthorized crate sources | ||
run: cargo deny check sources | ||
command: check sources | ||
|
||
minimal-versions: | ||
runs-on: ubuntu-latest | ||
|