Skip to content

Bump actions/checkout from 4.1.4 to 4.1.5 #327

Bump actions/checkout from 4.1.4 to 4.1.5

Bump actions/checkout from 4.1.4 to 4.1.5 #327

Workflow file for this run

name: cargo-deny
on:
push:
paths-ignore:
- "**.md"
pull_request:
paths-ignore:
- "**.md"
jobs:
cargo-deny:
runs-on: ubuntu-20.04
strategy:
matrix:
checks:
- advisories
- sources
- bans
# Prevent sudden announcement of a new advisory from failing ci:
continue-on-error: ${{ matrix.checks == 'sources' }}
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4.1.5
- run: git config --global http.postBuffer 524288000
- run: git config --global http.sslVerify "false"
- run: git submodule update --init --recursive --depth 1
- run: bash sh_script/pre-build.sh
- uses: EmbarkStudios/cargo-deny-action@3f4a782664881cf5725d0ffd23969fcce89fd868 # v1.6.3
with:
command: check ${{ matrix.checks }}