diff --git a/cimaster/Dockerfile b/cimaster/Dockerfile index 9f824a3..44193a5 100644 --- a/cimaster/Dockerfile +++ b/cimaster/Dockerfile @@ -6,12 +6,12 @@ RUN set -eux; \ url=; \ case "$arch" in \ 'amd64') \ - url='https://dl.google.com/go/go1.22.0.linux-amd64.tar.gz'; \ - sha256='f6c8a87aa03b92c4b0bf3d558e28ea03006eb29db78917daec5cfb6ec1046265'; \ + url='https://dl.google.com/go/go1.22.1.linux-amd64.tar.gz'; \ + sha256='aab8e15785c997ae20f9c88422ee35d962c4562212bb0f879d052a35c8307c7f'; \ ;; \ 'arm64') \ - url='https://dl.google.com/go/go1.22.0.linux-arm64.tar.gz'; \ - sha256='6a63fef0e050146f275bf02a0896badfe77c11b6f05499bb647e7bd613a45a10'; \ + url='https://dl.google.com/go/go1.22.1.linux-arm64.tar.gz'; \ + sha256='e56685a245b6a0c592fc4a55f0b7803af5b3f827aaa29feab1f40e491acf35b8'; \ ;; \ *) echo >&2 "error: unsupported architecture '$arch' (likely packaging update needed)"; exit 1 ;; \ esac; \ diff --git a/keycloak/builder.sh b/keycloak/builder.sh index 9038b7d..38d7706 100755 --- a/keycloak/builder.sh +++ b/keycloak/builder.sh @@ -16,5 +16,5 @@ if [ "$OLD_DIGEST" != "$CUR_DIGEST" ]; then echo "$CUR_DIGEST" > old_digest docker buildx prune -f - curl -d "Keycloak image built\n\nDigest: $CUR_DIGEST" https://ntfy.thetadev.de/alerts + curl --data-binary "Keycloak image built\n\nDigest: $CUR_DIGEST" https://ntfy.thetadev.de/alerts fi