Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bump version to 0.20.0 #22

Merged
merged 2 commits into from
Jan 24, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,16 +33,16 @@ runs:
- name: Install Rust
uses: actions-rs/[email protected]
with:
# From https://github.com/model-checking/kani/blob/kani-0.19.0/rust-toolchain.toml
# From https://github.com/model-checking/kani/blob/kani-0.20.0/rust-toolchain.toml
# Should be updated every time we update the version to keep in sync.
# This should be automated https://github.com/model-checking/kani-github-action/issues/9
toolchain: nightly-2022-11-20
toolchain: nightly-2022-12-11
override: true

- name: Install Kani
shell: bash
run: |
export KANI_VERSION="0.19.0";
export KANI_VERSION="0.20.0";
cargo install --version $KANI_VERSION --locked kani-verifier;
cargo-kani setup;

Expand Down