Skip to content

Commit

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

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

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 Oct 16, 2021
1 parent 24ddbc3 commit 82d2c40
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 @@ -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
Expand All @@ -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.
Expand All @@ -52,7 +52,7 @@ jobs:
permissions:
contents: read
steps:
- uses: actions/checkout@5a4ac9002d0be2fb38bd78e4b4dbde5606d7042f
- uses: actions/checkout@1e204e9a9253d643386038d443f96446fa156a97
- 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.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
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -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.
Expand All @@ -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

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

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

0 comments on commit 82d2c40

Please sign in to comment.