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

Pin the libcnb-cargo version to the same version as libcnb-package #124

Merged
merged 1 commit into from
Aug 18, 2023
Merged
Show file tree
Hide file tree
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
4 changes: 3 additions & 1 deletion .github/workflows/_buildpacks-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,9 @@ jobs:
uses: Swatinem/[email protected]

- name: Install libcnb-cargo
run: cargo install libcnb-cargo
# TODO: Derive this version from the `libcnb-package` version in this repo's `Cargo.toml`,
# or at least add a CI check to ensure the two versions are in sync.
run: cargo install --locked [email protected]

- name: Install Languages CLI
uses: heroku/languages-github-actions/.github/actions/install-languages-cli@main
Expand Down
5 changes: 3 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,9 @@ clap = { version = "4", default-features = false, features = [
] }
indexmap = "2"
lazy_static = "1"
libcnb-data = "0.13"
libcnb-package = "0.13"
# NB: Make sure to keep the `libcnb-cargo` version in `_buildpacks-release.yml` in sync with these.
libcnb-data = "=0.13.0"
libcnb-package = "=0.13.0"
markdown = "1.0.0-alpha.12"
rand = "0.8"
regex = "1"
Expand Down