From db6ccdd86357b793ddc7e612eaaea62e95ff8203 Mon Sep 17 00:00:00 2001 From: Jonathan Schwender Date: Fri, 25 Aug 2023 18:14:40 +0200 Subject: [PATCH] Fix cargo semver-checks rust version I forgot forcing stable rustc for semver-checks in commit 67fea1a. On nightly Rust it is possible for the rustdoc version to be newer than what cargo semver checks supports. --- .github/workflows/deploy.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 6aa6168..b77b173 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -25,7 +25,7 @@ jobs: - name: semver run: | cargo +stable install cargo-semver-checks --locked - cargo semver-checks check-release + cargo +stable semver-checks check-release - name: Build cbindgen run: |