diff --git a/.github/workflows/advisory.yml b/.github/workflows/advisory.yml index a37b209df1..fd1589cfe4 100644 --- a/.github/workflows/advisory.yml +++ b/.github/workflows/advisory.yml @@ -12,7 +12,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - uses: EmbarkStudios/cargo-deny-action@0ca727bbae7b7b578b9a5f98186caac35aa2a00d with: command: check advisories @@ -37,7 +37,7 @@ jobs: - tls - transport-header steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: rustup toolchain add nightly - run: cargo install cargo-fuzz # Iterate through all fuzz crates to ensure each compiles independently. @@ -52,7 +52,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: make build env: CARGO_RELEASE: true diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 9e99bb39f1..49e4c9932e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -14,7 +14,7 @@ jobs: image: docker://rust:1.55.0-buster options: --security-opt seccomp=unconfined steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: cargo install cargo-tarpaulin - run: cargo tarpaulin --verbose --workspace --out Xml - uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index d5bb10dcea..ef3925408b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -27,7 +27,7 @@ jobs: timeout-minutes: 40 steps: - name: git co - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - name: meta id: release-tag-meta @@ -69,7 +69,7 @@ jobs: contents: write steps: - name: git co - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - name: meta id: release-tag-meta diff --git a/.github/workflows/rust.yml b/.github/workflows/rust.yml index 94d840bb63..dac2ffef2a 100644 --- a/.github/workflows/rust.yml +++ b/.github/workflows/rust.yml @@ -14,7 +14,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - uses: EmbarkStudios/cargo-deny-action@0ca727bbae7b7b578b9a5f98186caac35aa2a00d with: command: check bans licenses sources @@ -28,7 +28,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: rustup component add clippy - run: make lint @@ -41,7 +41,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: for d in $(for toml in $(find . -mindepth 2 -name Cargo.toml -not -path '*/fuzz/*') ; do echo ${toml%/*} ; done | sort -r ) ; do echo "# $d" ; (cd $d ; cargo check --all-targets) ; done # Enforce automated formatting. @@ -53,7 +53,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: rustup component add rustfmt - run: make check-fmt @@ -64,7 +64,7 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: make test # Generate docs @@ -74,5 +74,5 @@ jobs: permissions: contents: read steps: - - uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f + - uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97 - run: cargo doc