diff --git a/.github/renovate.json b/.github/renovate.json index 52fc93c..c205f53 100644 --- a/.github/renovate.json +++ b/.github/renovate.json @@ -1,11 +1,17 @@ { "$schema": "https://docs.renovatebot.com/renovate-schema.json", - "enabledManagers": ["dockerfile", "docker-compose"], "extends": [ "config:recommended", ":disableDependencyDashboard", "docker:pinDigests" ], + "enabledManagers": ["dockerfile", "docker-compose"], "schedule": ["on sunday"], - "minimumReleaseAge": "21 days" + "prCreation": "not-pending", + "packageRules": [ + { + "matchUpdateTypes": ["major", "minor", "patch"], + "minimumReleaseAge": "21 days" + } + ] } diff --git a/Dockerfile b/Dockerfile index 2ac663a..75c8210 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -ARG BASE_IMAGE=debian:13.2-slim@sha256:e711a7b30ec1261130d0a121050b4ed81d7fb28aeabcf4ea0c7876d4e9f5aca2 +ARG BASE_IMAGE=debian:13.2-slim@sha256:4bcb9db66237237d03b55b969271728dd3d955eaaa254b9db8a3db94550b1885 FROM ${BASE_IMAGE} # Create the build image. @@ -8,7 +8,7 @@ ARG SENZING_APT_INSTALL_PACKAGE="senzingapi-runtime=3.13.0-25273" ARG SENZING_APT_REPOSITORY_NAME="senzingrepo_2.0.1-1_all.deb" ARG SENZING_APT_REPOSITORY_URL="https://senzing-production-apt.s3.amazonaws.com" -ENV REFRESHED_AT=2025-06-20 +ENV REFRESHED_AT=2026-01-05 ENV SENZING_ACCEPT_EULA=${SENZING_ACCEPT_EULA} \ SENZING_APT_INSTALL_PACKAGE=${SENZING_APT_INSTALL_PACKAGE} \ @@ -59,4 +59,4 @@ ENV LD_LIBRARY_PATH=/opt/senzing/g2/lib # Runtime execution. WORKDIR / -CMD ["/bin/bash"] \ No newline at end of file +CMD ["/bin/bash"]