Skip to content

Commit 98e39e0

Browse files
monicatangfacebook-github-bot
authored andcommitted
Unblock Cargo.lock update workflow (#4887)
Summary: The "Update Cargo.lock" GitHub workflow has been stuck for about a month. It's now making the GitHub CI red since Cargo.lock needs to be updated. A lint suppression for an unknown lint is blocking the compilation of the common crate. The lint suppression was added to get Relay to build with a new Rust toolchain version. So, one possibility is that we need to bump the Rust toolchain used in the Cargo.lock action to match what we have in the other GitHub actions. Pull Request resolved: #4887 Reviewed By: captbaritone Differential Revision: D68478053 Pulled By: monicatang fbshipit-source-id: c0b7abd6179b761a88c19ba9e8ab6b2acce66b5f
1 parent 38ae469 commit 98e39e0

File tree

5 files changed

+701
-530
lines changed

5 files changed

+701
-530
lines changed

.github/workflows/update-cargo-lock.yml

+4-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,10 @@ jobs:
2121
- uses: actions/checkout@v2
2222
- uses: actions-rs/toolchain@v1
2323
with:
24-
toolchain: 1.76.0
24+
# Should stay in sync with fbcode/buck2/rust-toolchain
25+
# And other similar references in this file and
26+
# ci.yml
27+
toolchain: nightly-2024-10-13
2528
override: true
2629
- name: cargo check
2730
run: cargo check --features vendored --manifest-path=compiler/Cargo.toml

0 commit comments

Comments
 (0)