[pull] main from kata-containers:main #2567
This file contains hidden or 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
| name: Cargo Crates Check Runner | |
| on: | |
| pull_request: | |
| types: | |
| - opened | |
| - edited | |
| - reopened | |
| - synchronize | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| permissions: {} | |
| jobs: | |
| cargo-deny-runner: | |
| name: cargo-deny-runner | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout Code | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| persist-credentials: false | |
| - name: Generate Action | |
| run: bash cargo-deny-generator.sh | |
| working-directory: ./.github/cargo-deny-composite-action/ | |
| env: | |
| GOPATH: ${{ github.workspace }}/kata-containers | |
| - name: Run Action | |
| uses: ./.github/cargo-deny-composite-action |