Skip to content

Commit

Permalink
build(deps): bump sha3 from 0.10.2 to 0.10.4 (MystenLabs#4575)
Browse files Browse the repository at this point in the history
* build(deps): bump sha3 from 0.10.2 to 0.10.4

Bumps [sha3](https://github.com/RustCrypto/hashes) from 0.10.2 to 0.10.4.
- [Release notes](https://github.com/RustCrypto/hashes/releases)
- [Commits](RustCrypto/hashes@sha3-v0.10.2...sha3-v0.10.4)

---
updated-dependencies:
- dependency-name: sha3
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

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

* fix: make sure the checkout is done with a PAT

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: François Garillot <francois@garillot.net>
  • Loading branch information
dependabot[bot] and huitseeker authored Sep 13, 2022
1 parent 1665a55 commit 6c167d3
Show file tree
Hide file tree
Showing 6 changed files with 15 additions and 14 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/dependabot-auto-merge.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- uses: actions/checkout@v3
with:
ref: ${{ github.head_ref }}
token: ${{ secrets.AUTOMERGE_TOKEN }}
- uses: actions-rs/toolchain@v1
- name: Install cargo-hakari, and cache the binary
uses: baptiste0928/cargo-install@v1
Expand Down Expand Up @@ -53,5 +54,5 @@ jobs:
run: gh pr merge --auto --squash "$PR_URL"
env:
PR_URL: ${{github.event.pull_request.html_url}}
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

18 changes: 9 additions & 9 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion crates/sui-config/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ sui-adapter = { path = "../sui-adapter" }
sui-simulator = { path = "../sui-simulator" }
sui-types = { path = "../sui-types" }
workspace-hack = { path = "../workspace-hack"}
sha3 = "0.10.2"
sha3 = "0.10.4"
digest = "0.10.3"

[dev-dependencies]
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-framework/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ linked-hash-map = "0.5.6"
smallvec = "1.9.0"
num_enum = "0.5.7"
once_cell = "1.14.0"
sha3 = "0.10.1"
sha3 = "0.10.4"
curve25519-dalek-ng = "4.1.1"

sui-types = { path = "../sui-types" }
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-sdk/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ dirs = "4.0.0"
tokio = "1.20.1"
async-recursion = "1.0.0"
tempfile = "3.3.0"
sha3 = "0.10.2"
sha3 = "0.10.4"

[[example]]
name = "tic-tac-toe"
Expand Down
2 changes: 1 addition & 1 deletion crates/sui-types/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ serde = { version = "1.0.144", features = ["derive"] }
curve25519-dalek = { version = "3", default-features = false, features = ["serde", "u64_backend"] }
serde-name = "0.2.1"
sha2 = "0.9.9"
sha3 = "0.10.2"
sha3 = "0.10.4"
thiserror = "1.0.34"
tracing = "0.1"
hex = "0.4.3"
Expand Down

0 comments on commit 6c167d3

Please sign in to comment.