Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps): bump actions/checkout from 2.3.5 to 2.4.0 #1352

Merged
merged 1 commit into from
Nov 3, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/advisory.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- uses: EmbarkStudios/cargo-deny-action@0ca727bbae7b7b578b9a5f98186caac35aa2a00d
with:
command: check advisories
Expand All @@ -43,7 +43,7 @@ jobs:
- tls
- transport-header
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- run: rustup toolchain add nightly
- run: cargo install cargo-fuzz
# Iterate through all fuzz crates to ensure each compiles independently.
Expand All @@ -58,7 +58,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- run: make build
env:
CARGO_RELEASE: true
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
image: docker://rust:1.56.0-buster
options: --security-opt seccomp=unconfined
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- run: cargo install cargo-tarpaulin
- run: cargo tarpaulin --verbose --workspace --out Xml
- uses: codecov/codecov-action@f32b3a3741e1053eb607407145bc9619351dc93b
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
timeout-minutes: 40
steps:
- name: git co
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579

- name: meta
id: release-tag-meta
Expand Down Expand Up @@ -75,7 +75,7 @@ jobs:
contents: write
steps:
- name: git co
uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579

- name: meta
id: release-tag-meta
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- uses: EmbarkStudios/cargo-deny-action@0ca727bbae7b7b578b9a5f98186caac35aa2a00d
with:
command: check bans licenses sources
Expand All @@ -34,7 +34,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- run: rustup component add clippy
- run: make lint

Expand All @@ -47,7 +47,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- 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.
Expand All @@ -59,7 +59,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- run: rustup component add rustfmt
- run: make check-fmt

Expand All @@ -70,7 +70,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- run: make test

# Generate docs
Expand All @@ -80,5 +80,5 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- uses: actions/checkout@ec3a7ce113134d7a93b817d10a8272cb61118579
- run: cargo doc