summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsupahgreg <supahgreg@users.noreply.github.com>2025-10-11 02:40:31 +0000
committersupahgreg <supahgreg@users.noreply.github.com>2025-10-11 02:40:31 +0000
commit105b16bce75dd8868f253c502ff5dc57f9f89313 (patch)
tree71e7590ffeff955027ecedb91b39eac3c48c0d81
parent46e0d6e1efa04c8905b4f8d016512125464a5732 (diff)
Add 'docker' and 'github-actions' to Dependabot config.
-rw-r--r--.docker/app/Dockerfile2
-rw-r--r--.docker/web-nginx/Dockerfile2
-rw-r--r--.github/dependabot.yml18
3 files changed, 20 insertions, 2 deletions
diff --git a/.docker/app/Dockerfile b/.docker/app/Dockerfile
index 09535eeee..35d2ab90e 100644
--- a/.docker/app/Dockerfile
+++ b/.docker/app/Dockerfile
@@ -1,6 +1,6 @@
ARG PROXY_REGISTRY
-FROM ${PROXY_REGISTRY}alpine:3.22
+FROM ${PROXY_REGISTRY}alpine:3.22.2
EXPOSE 9000/tcp
ARG ALPINE_MIRROR
diff --git a/.docker/web-nginx/Dockerfile b/.docker/web-nginx/Dockerfile
index 012f476f0..16b3821db 100644
--- a/.docker/web-nginx/Dockerfile
+++ b/.docker/web-nginx/Dockerfile
@@ -1,5 +1,5 @@
ARG PROXY_REGISTRY
-FROM ${PROXY_REGISTRY}nginx:alpine
+FROM ${PROXY_REGISTRY}nginx:1.29.2-alpine
HEALTHCHECK CMD curl --fail http://localhost${APP_BASE}/index.php || exit 1
diff --git a/.github/dependabot.yml b/.github/dependabot.yml
index 2eabf5f16..f1ad1d7de 100644
--- a/.github/dependabot.yml
+++ b/.github/dependabot.yml
@@ -5,3 +5,21 @@ updates:
directory: /
schedule:
interval: weekly
+ commit-message:
+ prefix: 'Composer:'
+
+- package-ecosystem: docker
+ directories:
+ - /.docker/app
+ - /.docker/web-nginx
+ schedule:
+ interval: weekly
+ commit-message:
+ prefix: 'Docker:'
+
+- package-ecosystem: github-actions
+ directory: /
+ schedule:
+ interval: weekly
+ commit-message:
+ prefix: 'GitHub Actions:'