mirror of
https://github.com/pezkuwichain/pezframe-metadata.git
synced 2026-04-22 21:47:57 +00:00
f81f8477af
Bumps [EmbarkStudios/cargo-deny-action](https://github.com/embarkstudios/cargo-deny-action) from 1 to 2. - [Release notes](https://github.com/embarkstudios/cargo-deny-action/releases) - [Commits](https://github.com/embarkstudios/cargo-deny-action/compare/v1...v2) --- updated-dependencies: - dependency-name: EmbarkStudios/cargo-deny-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
31 lines
811 B
YAML
31 lines
811 B
YAML
name: Cargo deny
|
|
|
|
on:
|
|
pull_request:
|
|
schedule:
|
|
- cron: '0 0 * * *'
|
|
push:
|
|
branches:
|
|
- master
|
|
tags:
|
|
- v*
|
|
paths-ignore:
|
|
- 'README.md'
|
|
jobs:
|
|
cargo-deny:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Cancel Previous Runs
|
|
uses: styfle/cancel-workflow-action@85880fa0301c86cca9da44039ee3bb12d3bedbfa # 0.12.1
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
- name: Checkout sources & submodules
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 5
|
|
submodules: recursive
|
|
- name: Cargo deny
|
|
uses: EmbarkStudios/cargo-deny-action@v2
|
|
with:
|
|
command: "check --hide-inclusion-graph"
|