-
Notifications
You must be signed in to change notification settings - Fork 6
chore(deps): Bump alpine from 3.23 to 3.24 #3
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
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -56,7 +56,7 @@ RUN --mount=type=cache,target=/usr/local/cargo/registry \ | |
| # Stage 2: Runtime | ||
| # ------------------------------------------------------------------------------ | ||
|
|
||
| FROM alpine:3.23 | ||
| FROM alpine:3.24 | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [Critical] This is the ONLY expected change for this PR: |
||
|
|
||
| LABEL org.opencontainers.image.source="https://github.com/praxis-proxy/conventions" \ | ||
| org.opencontainers.image.description="Conventions probe binary" \ | ||
|
|
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -23,7 +23,7 @@ ifneq ($(V),) | |
| endif | ||
|
|
||
| .PHONY: all build release check clean \ | ||
| test mutants lint lint-extra fmt doc audit semver publish-dry-run \ | ||
| test mutants lint lint-extra fmt doc audit semver publish-dry-run publish \ | ||
| coverage coverage-check \ | ||
| check-prereqs check-prereqs-extra check-prereqs-audit check-prereqs-nightly \ | ||
| require-container-engine \ | ||
|
|
@@ -150,6 +150,16 @@ publish-dry-run: | |
| done | ||
| cargo package -p $(firstword $(PUBLISH_CRATES)) | ||
|
|
||
| # Real crates.io publish, in dependency order. Requires a crates.io token | ||
|
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. [Critical] Unexpected change: new |
||
| # in CARGO_REGISTRY_TOKEN (set from the RUST_CRATES_PUBLISH_TOKEN secret in | ||
| # CI). `cargo publish` blocks until each crate is available in the index | ||
| # before the next one publishes. | ||
| publish: | ||
| @for crate in $(PUBLISH_CRATES); do \ | ||
| echo "publishing $$crate"; \ | ||
| cargo publish -p "$$crate"; \ | ||
| done | ||
|
|
||
| # ------------------------------------------------------------------- | ||
| # Container | ||
| # ------------------------------------------------------------------- | ||
|
|
@@ -235,6 +245,7 @@ help: | |
| @echo " audit cargo audit + cargo deny" | ||
| @echo " semver cargo semver-checks" | ||
| @echo " publish-dry-run package + verify release crates" | ||
| @echo " publish publish release crates to crates.io" | ||
| @echo " coverage HTML coverage report" | ||
| @echo " coverage-check fail if lines < 90%% or regions < 80%%" | ||
| @echo "" | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
[Critical] Unexpected change: this entire release workflow redesign (2-phase process, draft releases, crates.io publishing) is unrelated to the Alpine version bump. This should not be in a Dependabot PR. The PR should only change
alpine:3.23toalpine:3.24in the Containerfile.