mirror of
https://github.com/fish-shell/fish-shell.git
synced 2026-04-21 17:21:14 -03:00
25 lines
759 B
YAML
25 lines
759 B
YAML
name: Lint Dependencies
|
|
on:
|
|
push:
|
|
paths:
|
|
- '.github/workflows/lint-dependencies.yml'
|
|
- 'Cargo.lock'
|
|
- '**/Cargo.toml'
|
|
- 'deny.toml'
|
|
pull_request:
|
|
paths:
|
|
- '.github/workflows/lint-dependencies.yml'
|
|
- 'Cargo.lock'
|
|
- '**/Cargo.toml'
|
|
- 'deny.toml'
|
|
jobs:
|
|
cargo-deny:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2, build_tools/update-dependencies.sh
|
|
- uses: EmbarkStudios/cargo-deny-action@44db170f6a7d12a6e90340e9e0fca1f650d34b14 # v2.0.15, build_tools/update-dependencies.sh
|
|
with:
|
|
command: check licenses
|
|
arguments: --all-features --locked --exclude-dev
|
|
rust-version: 1.93 # updatecli.d/rust.yml
|