mirror of
https://github.com/pezkuwichain/pezframe-metadata.git
synced 2026-04-22 10:07:56 +00:00
d41046b12c
* Bump styfle/cancel-workflow-action from 0.10.0 to 0.11.0 Bumps [styfle/cancel-workflow-action](https://github.com/styfle/cancel-workflow-action) from 0.10.0 to 0.11.0. - [Release notes](https://github.com/styfle/cancel-workflow-action/releases) - [Commits](https://github.com/styfle/cancel-workflow-action/compare/bb6001c4ea612bf59c3abfc4756fbceee4f870c7...b173b6ec0100793626c2d9e6b90435061f4fc3e5) --- updated-dependencies: - dependency-name: styfle/cancel-workflow-action dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] <support@github.com> * match hash with version Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Sergejs Kostjucenko <sergejs@parity.io>
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@b173b6ec0100793626c2d9e6b90435061f4fc3e5 # 0.11.0
|
|
with:
|
|
access_token: ${{ github.token }}
|
|
- name: Checkout sources & submodules
|
|
uses: actions/checkout@v3
|
|
with:
|
|
fetch-depth: 5
|
|
submodules: recursive
|
|
- name: Cargo deny
|
|
uses: EmbarkStudios/cargo-deny-action@v1
|
|
with:
|
|
command: "check --hide-inclusion-graph"
|