Skip to content

Commit

Permalink
build(deps): bump actions/checkout from 2.3.5 to 2.4.0 (#1352)
Browse files Browse the repository at this point in the history
Bumps [actions/checkout](https://github.com/actions/checkout) from 2.3.5 to 2.4.0.
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@1e204e9...ec3a7ce)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
  • Loading branch information
dependabot[bot] authored Nov 3, 2021
1 parent 731d12d commit 6e51c64
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 12 deletions.
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

0 comments on commit 6e51c64

Please sign in to comment.