Skip to content

Commit

Permalink
fix(ci): fix various problems we found (#4431)
Browse files Browse the repository at this point in the history
  • Loading branch information
StackOverflowExcept1on authored Jan 11, 2025
1 parent 2f3b7cf commit f984a3e
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 6 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,6 @@ jobs:

- name: "Install: Foundry"
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: "Show: Versioning"
run: |
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,6 @@ jobs:

- name: "Install: Foundry"
uses: foundry-rs/foundry-toolchain@v1
with:
version: nightly

- name: "Install: Node.js"
uses: actions/setup-node@v4
Expand Down
2 changes: 1 addition & 1 deletion utils/crates-io/src/manifest.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ impl Workspace {
let version = if let Some(version) = version {
version
} else {
workspace.version()? + "-" + &version::hash()?
workspace.version()? + "-" + &version::hash()? + "commit"
};

workspace.mutable_manifest["workspace"]["package"]["version"] =
Expand Down
2 changes: 1 addition & 1 deletion utils/node-wrapper/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ repository.workspace = true
rust-version.workspace = true

[dependencies]
anyhow.workspace = true
anyhow = { workspace = true, features = ["std"] }
rand = { workspace = true, features = [ "getrandom" ] }
which.workspace = true
smallvec.workspace = true

0 comments on commit f984a3e

Please sign in to comment.