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 + } ] } 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 \