From 54932106738fbd24db0a5049ed04f12489a46aa1 Mon Sep 17 00:00:00 2001 From: Ed Morley <501702+edmorley@users.noreply.github.com> Date: Tue, 12 Mar 2024 22:43:16 +0000 Subject: [PATCH] Update default version of crane from 0.14.0 to 0.19.0 Since I just tried to use `crane copy --all-tags` with the version installed by the `setup-tools` action, however, it failed with: ``` Error: unknown flag: --all-tags ``` It turns out that feature was added in 0.15.0 in May 2023, but that version is still newer than the version installed by this action. Whilst I can manually override the version myself, it seems we should update the default version to prevent others from running into similar footguns. https://github.com/google/go-containerregistry/compare/v0.14.0...v0.19.0 Signed-off-by: Ed Morley <501702+edmorley@users.noreply.github.com> --- setup-tools/action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup-tools/action.yml b/setup-tools/action.yml index 477c37f..e615260 100644 --- a/setup-tools/action.yml +++ b/setup-tools/action.yml @@ -6,7 +6,7 @@ inputs: crane-version: description: 'The version of crane to install' required: false - default: '0.14.0' + default: '0.19.0' yj-version: description: 'The version of yj to install' required: false