From 1df0f254b65b856ebcb25746fb109cbd64eae7d0 Mon Sep 17 00:00:00 2001 From: Dmytro Bondar Date: Thu, 26 Dec 2024 22:11:35 +0100 Subject: [PATCH 1/2] renovate: include pre-release versions of go-sqlcmd --- .github/renovate.json | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/renovate.json b/.github/renovate.json index 9245e3c..85579e1 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -13,5 +13,11 @@ "fileMatch": ["^Dockerfile$"], "matchStrings": ["ARG SQLCMD_VERSION=(?.+?)\\s"] } + ], + "packageRules": [ + { + "matchDepNames": ["microsoft/go-sqlcmd"], + "ignoreUnstable": false + } ] } From bcbaa2b6312a83325c090cd819b4bb03917f826f Mon Sep 17 00:00:00 2001 From: Dmytro Bondar Date: Thu, 26 Dec 2024 22:11:58 +0100 Subject: [PATCH 2/2] Bump go-sqlcmd to v1.8.1 --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 938b7ba..1d6f9b8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ FROM --platform=${BUILDPLATFORM} alpine:3 AS tools -ARG SQLCMD_VERSION=v1.8.0 +ARG SQLCMD_VERSION=v1.8.1 ARG TARGETARCH RUN apk add --update-cache --no-cache curl jq xz && \ curl -sSL https://github.com/microsoft/go-sqlcmd/releases/download/${SQLCMD_VERSION}/sqlcmd-linux-${TARGETARCH}.tar.bz2 \