Skip to content

Commit e4fe57a

Browse files
authored
CI: Pin cargo-release and cargo-semver-checks (#77)
#### Problem The release job is failing because it can't install cargo-semver-checks due to the lower Rust version declared in the repo. Also, cargo-release just bumped up to 1.87 on master, which means that a release with a higher MSRV is just around the corner. #### Summary of changes Pin the versions of both tools to the latest that supports Rust 1.86.
1 parent d4a7485 commit e4fe57a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/publish-rust.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ jobs:
8585
- name: Install cargo-semver-checks
8686
uses: taiki-e/install-action@v2
8787
with:
88-
tool: cargo-semver-checks,cargo-release
88+
tool: cargo-semver-checks@0.42.0,cargo-release0.25.18
8989

9090
- name: Set Git Author (required for cargo-release)
9191
run: |
@@ -126,7 +126,7 @@ jobs:
126126
- name: Install cargo-release
127127
uses: taiki-e/install-action@v2
128128
with:
129-
tool: cargo-release
129+
tool: cargo-release@0.25.18
130130

131131
- name: Ensure CARGO_REGISTRY_TOKEN variable is set
132132
env:

0 commit comments

Comments
 (0)