Skip to content

Commit 41d5722

Browse files
authored
CI: Fix publish tool versions (#101)
#### Problem The publish job is failing because the newest semver-checks doesn't support Rust 1.86. #### Summary of changes Similar to the reusable action, fix cargo-semver-checks and cargo-release to appropriate versions.
1 parent 4436a38 commit 41d5722

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
@@ -88,7 +88,7 @@ jobs:
8888
- name: Install cargo-semver-checks
8989
uses: taiki-e/install-action@v2
9090
with:
91-
tool: cargo-semver-checks,cargo-release
91+
tool: cargo-semver-checks@0.42.0,cargo-release@0.25.18
9292

9393
- name: Set Git Author (required for cargo-release)
9494
run: |
@@ -129,7 +129,7 @@ jobs:
129129
- name: Install cargo-release
130130
uses: taiki-e/install-action@v2
131131
with:
132-
tool: cargo-release
132+
tool: cargo-release@0.25.18
133133

134134
- name: Ensure CARGO_REGISTRY_TOKEN variable is set
135135
env:

0 commit comments

Comments
 (0)