From 36d3d7ad5575692981c7135f1e1afa8ce829f629 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Thu, 9 May 2024 12:58:59 +0200 Subject: [PATCH 1/2] rootless: update to 26.1.2 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- rootless-install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rootless-install.sh b/rootless-install.sh index 80fb93f6..073bfe42 100755 --- a/rootless-install.sh +++ b/rootless-install.sh @@ -21,7 +21,7 @@ SCRIPT_COMMIT_SHA=UNKNOWN # This script should be run with an unprivileged user and install/setup Docker under $HOME/bin/. # The latest release is currently hard-coded. -STABLE_LATEST="26.1.1" +STABLE_LATEST="26.1.2" # The channel to install from: # * test @@ -33,7 +33,7 @@ if [ -z "$CHANNEL" ]; then fi # The test release is currently hard-coded. -TEST_LATEST="26.1.1" +TEST_LATEST="26.1.2" STATIC_RELEASE_URL= STATIC_RELEASE_ROOTLESS_URL= From 195cc06fd8601236a9b48df5c0ed56fe829cfa2f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82=20Gronowski?= Date: Thu, 9 May 2024 13:26:38 +0200 Subject: [PATCH 2/2] shellcheck: Use stable version MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Paweł Gronowski --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dbe93412..1162c32f 100644 --- a/Makefile +++ b/Makefile @@ -4,7 +4,7 @@ CHANNEL?= VOLUME_MOUNTS=-v "$(CURDIR)":/v SHELLCHECK_EXCLUSIONS=$(addprefix -e, SC1091 SC1117 SC2317) -SHELLCHECK=docker run --rm $(VOLUME_MOUNTS) -w /v koalaman/shellcheck $(SHELLCHECK_EXCLUSIONS) +SHELLCHECK=docker run --rm $(VOLUME_MOUNTS) -w /v koalaman/shellcheck:stable $(SHELLCHECK_EXCLUSIONS) ENVSUBST_VARS=LOAD_SCRIPT_COMMIT_SHA