Skip to content

Commit

Permalink
CI: Pin version of cargo-release (#7396)
Browse files Browse the repository at this point in the history
#### Problem

The release step in CI is failing because the latest cargo-release
requires Rust 1.79, but this repo is still at 1.78.

#### Summary of changes

Pin cargo-release to 0.25.11, which is compatible with 1.78, as noted in
the failing run: https://github.com/solana-labs/solana-program-library/actions/runs/11523644623/job/32082450563
  • Loading branch information
joncinque authored Oct 25, 2024
1 parent c59e2f3 commit bd51bfc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/publish-rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ jobs:
cargo-publish-
- name: Install Cargo Release
run: which cargo-release || cargo install cargo-release
run: which cargo-release || cargo install cargo-release --version 0.25.11

- name: Ensure CARGO_REGISTRY_TOKEN variable is set
env:
Expand Down

0 comments on commit bd51bfc

Please sign in to comment.