Skip to content

Bump RESTIC_VERSION to 0.18.1-20260421#91

Merged
kodiak-appscode[bot] merged 2 commits intomasterfrom
bump-restic-0.18.1-20260421
Apr 21, 2026
Merged

Bump RESTIC_VERSION to 0.18.1-20260421#91
kodiak-appscode[bot] merged 2 commits intomasterfrom
bump-restic-0.18.1-20260421

Conversation

@anisurrahman75
Copy link
Copy Markdown
Member

Automated update of RESTIC_VERSION

Signed-off-by: Anisur Rahman <anisur@appscode.com>
Copilot AI review requested due to automatic review settings April 21, 2026 09:45
Copy link
Copy Markdown

Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull request overview

This PR updates the Restic version used by the build system, so produced binaries embed/build against the intended Restic release identifier.

Changes:

  • Bump RESTIC_VER in the Makefile to 0.18.1-20260421.
  • Update the build container invocation to pass a Restic version value into ./hack/build.sh.

💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.

Comment thread Makefile Outdated
commit_hash=$(commit_hash) \
commit_timestamp=$(commit_timestamp) \
RESTIC_VER=$(RESTIC_VER) \
RESTIC_VER=0.18.1-20260421
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

In the docker run recipe, the line that sets RESTIC_VER is missing the trailing \ line-continuation. This will terminate the docker run ... /bin/bash -c "..." command early with an unterminated quoted string, causing make build to fail. Add the continuation back (and keep the closing quote on the final line of the command).

Suggested change
RESTIC_VER=0.18.1-20260421
RESTIC_VER=0.18.1-20260421 \

Copilot uses AI. Check for mistakes.
Comment thread Makefile Outdated
commit_hash=$(commit_hash) \
commit_timestamp=$(commit_timestamp) \
RESTIC_VER=$(RESTIC_VER) \
RESTIC_VER=0.18.1-20260421
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The build recipe now hardcodes RESTIC_VER=0.18.1-20260421 instead of using the $(RESTIC_VER) Make variable. This duplicates the version in two places and breaks the ability to override RESTIC_VER from the environment/CLI (only the variable assignment would change). Use RESTIC_VER=$(RESTIC_VER) here to keep a single source of truth.

Suggested change
RESTIC_VER=0.18.1-20260421
RESTIC_VER=$(RESTIC_VER) \

Copilot uses AI. Check for mistakes.
Comment thread Makefile
BUILD_IMAGE ?= ghcr.io/appscode/golang-dev:$(GO_VERSION)

RESTIC_VER := 0.18.1
RESTIC_VER := 0.18.1-20260421
Copy link

Copilot AI Apr 21, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

PR title/description says "RESTIC_VERSION", but the Makefile variable being updated is RESTIC_VER. If the automation/reporting expects a specific variable name, consider aligning the wording (or renaming the variable consistently) to avoid confusion about what was actually bumped.

Copilot uses AI. Check for mistakes.
Signed-off-by: Anisur Rahman <anisur@appscode.com>
Copy link
Copy Markdown
Collaborator

@arnab-baishnab arnab-baishnab left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

LGTM

@arnab-baishnab arnab-baishnab added the automerge Kodiak will auto merge this PR label Apr 21, 2026
@kodiak-appscode kodiak-appscode Bot merged commit 818f5b5 into master Apr 21, 2026
4 checks passed
@kodiak-appscode kodiak-appscode Bot deleted the bump-restic-0.18.1-20260421 branch April 21, 2026 10:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

automerge Kodiak will auto merge this PR

Projects

None yet

Development

Successfully merging this pull request may close these issues.

3 participants