Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add dependabot to manage auto-updates in Dockerfiles #168

Merged
merged 1 commit into from
Jun 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
130 changes: 130 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,130 @@
# To get started with Dependabot version updates, you'll need to specify which
# package ecosystems to update and where the package manifests are located.
# Please see the documentation for all configuration options:
# https://docs.github.com/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file

version: 2
updates:
- package-ecosystem: "github-actions"
directory: "/" # Location of package manifests
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/cron"
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/mailhog"
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/mariadb"
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/newrelic-daemon"
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/nginx"
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/nginx-proxy"
schedule:
interval: "weekly"
reviewers:
- mrrobot47


- package-ecosystem: "docker"
directory: "/php/7.4"
ignore:
- dependency-name: "php"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/php/8.0"
ignore:
- dependency-name: "php"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/php/8.1"
ignore:
- dependency-name: "php"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/php/8.2"
ignore:
- dependency-name: "php"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/php/8.3"
ignore:
- dependency-name: "php"
update-types: ["version-update:semver-major", "version-update:semver-minor"]
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/php/stable"
ignore:
- dependency-name: "php"
update-types: [ "version-update:semver-major", "version-update:semver-minor" ]
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/postfix"
schedule:
interval: "weekly"
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/redis"
schedule:
interval: "weekly"
reviewers:
- mrrobot47
2 changes: 1 addition & 1 deletion cron/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mcuadros/ofelia@sha256:9478fec5cbcbad325c01b3d76523d44ebccb7f62c153c1389335a0a46f05c58e
FROM mcuadros/ofelia:0.3.12
LABEL org.label-schema.schema-version="1.0.0-rc1"
LABEL org.label-schema.vendor="EasyEngine"
LABEL org.label-schema.name="cron"
2 changes: 1 addition & 1 deletion mailhog/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mailhog/mailhog:v1.0.1@sha256:8d76a3d4ffa32a3661311944007a415332c4bb855657f4f6c57996405c009bea
FROM mailhog/mailhog:v1.0.1
LABEL org.label-schema.schema-version="1.0.0"
LABEL org.label-schema.vendor="EasyEngine"
LABEL org.label-schema.name="mailhog"
2 changes: 1 addition & 1 deletion mariadb/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM mariadb:10.11@sha256:9ff479f244cc596aed9794d035a9f352662f2caed933238c533024df64569853
FROM mariadb:10.11
LABEL org.label-schema.schema-version="1.0.0"
LABEL org.label-schema.vendor="EasyEngine"
LABEL org.label-schema.name="db"
Expand Down
2 changes: 1 addition & 1 deletion newrelic-daemon/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM alpine@sha256:c5b1261d6d3e43071626931fc004f70149baeba2c8ec672bd4f27761f8e1ad6b
FROM alpine:3.20.0

LABEL maintainer="Riddhesh Sanghvi <[email protected]>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion nginx-proxy/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM jwilder/nginx-proxy:1.5.2@sha256:404906fb004005e6b5829a866972e2a35a4afcef4bf5c89b16dd2869d47ffe38
FROM jwilder/nginx-proxy:1.5.2
LABEL org.label-schema.schema-version="1.0.0"
LABEL org.label-schema.vendor="EasyEngine"
LABEL org.label-schema.name="nginx-proxy"
Expand Down
2 changes: 1 addition & 1 deletion nginx/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM openresty/openresty:1.25.3.1-buster@sha256:362e0e52cd5eabb76bafb0741889cb79fc28c64504dc882827b091987d4ae8aa
FROM openresty/openresty:1.25.3.1-buster
LABEL org.label-schema.schema-version="1.0.0"
LABEL org.label-schema.vendor="EasyEngine"
LABEL org.label-schema.name="nginx"
Expand Down
2 changes: 1 addition & 1 deletion php/7.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:7.4-fpm@sha256:3ac7c8c74b2b047c7cb273469d74fc0d59b857aa44043e6ea6a0084372811d5b
FROM php:7.4.33-fpm

LABEL maintainer="Devarshi Sathiya <[email protected]>, Riddhesh Sanghvi <[email protected]>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion php/8.0/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.0-fpm@sha256:b07b8df17506cdb370945d942c5f12356af2d078005ded8b195f7e17129de9d1
FROM php:8.0.30-fpm

LABEL maintainer="Riddhesh Sanghvi <[email protected]>, Devarshi Sathiya <[email protected]>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion php/8.1/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.1-fpm@sha256:3c11e93a9847a6e0a670339268c0588ba20678b046698d91c71319e387b809bd
FROM php:8.1.28-fpm

LABEL maintainer="Riddhesh Sanghvi <[email protected]>, Devarshi Sathiya <[email protected]>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion php/8.2/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.2-fpm@sha256:90ef8a254ccac54c7a4d1ddc34627a4d6dc596ca1461ef1fb8db1741fbd0c92e
FROM php:8.2.19-fpm

LABEL maintainer="Riddhesh Sanghvi <[email protected]>, Devarshi Sathiya <[email protected]>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
3 changes: 2 additions & 1 deletion php/8.3/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
FROM php:8.3-fpm@sha256:28cfad4b9dfb7c378d861a757a9253e47cc8165b724f113160146fa8a41b48e1
FROM php:8.3.7-fpm

LABEL maintainer="Riddhesh Sanghvi <[email protected]>, Devarshi Sathiya <[email protected]>"
LABEL org.label-schema.schema-version="1.0.0"
LABEL org.label-schema.vendor="EasyEngine"
Expand Down
2 changes: 1 addition & 1 deletion postfix/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM debian:buster-slim@sha256:09bdc82c64e5e106d3f97cc8d834ef30eb46fab5fdbfde488aec554e94cd83a7
FROM debian:10.13-slim

LABEL maintainer="Riddhesh Sanghvi <[email protected]>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion redis/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM redis:7.2.4@sha256:f14f42fc7e824b93c0e2fe3cdf42f68197ee0311c3d2e0235be37480b2e208e6
FROM redis:7.2.4

LABEL org.label-schema.schema-version="1.0.0"
LABEL org.label-schema.vendor="EasyEngine"
Expand Down
Loading