Skip to content

Commit

Permalink
Fix CI by using the full SemVer value for fuel-core-client (#6179)
Browse files Browse the repository at this point in the history
  • Loading branch information
alfiedotwtf committed Sep 20, 2024
1 parent 0903dcd commit 3913b8f
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 5 additions & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,11 @@ sway-ir-macros = { path = "sway-ir/sway-ir-macros" }
fuel-abi-types = "0.7"

# Dependencies from the `fuel-core` repository:
fuel-core-client = { version = "0.35", default-features = false }
#
# Although ALL verions are "X.Y", we need the complete semver for
# fuel-core-client as the GitHub Actions workflow parses this value to pull down
# the correct tarball
fuel-core-client = { version = "0.35.0", default-features = false }
fuel-core-types = { version = "0.35", default-features = false }

# Dependencies from the `fuels-rs` repository:
Expand Down
3 changes: 2 additions & 1 deletion test/src/sdk-harness/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,8 @@ assert_matches = "1.5"

# Dependencies from the `fuel-core` repository:
fuel-core = { version = "0.35", default-features = false }
fuel-core-client = { version = "0.35", default-features = false }
# Using full semver as the workspace Cargo.toml (see the comment there)
fuel-core-client = { version = "0.35.0", default-features = false }

# Dependencies from the `fuel-vm` repository:
fuel-vm = { version = "0.56", features = ["random"] }
Expand Down

0 comments on commit 3913b8f

Please sign in to comment.