Skip to content
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
10 changes: 10 additions & 0 deletions .github/dependabot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -95,6 +95,16 @@ updates:
reviewers:
- mrrobot47

- package-ecosystem: "docker"
directory: "/php/8.5"
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:
Expand Down
2 changes: 2 additions & 0 deletions php/8.1/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,10 @@ LABEL org.label-schema.schema-version="1.0.0"
LABEL org.label-schema.vendor="EasyEngine"
LABEL org.label-schema.name="php"

# Upstream stopped rebuilding php:8.1 after its EOL, so pull in Debian security updates here.
RUN set -ex; \
apt-get update; \
apt-get upgrade -y; \
apt-get install -y --no-install-recommends \
imagemagick \
less \
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.33-fpm
FROM php:8.2.34-fpm

LABEL maintainer="Riddhesh Sanghvi <riddhesh237@gmail.com>, Devarshi Sathiya <devarshisathiya5@gmail.com>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion php/8.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4.25-fpm
FROM php:8.4.26-fpm

LABEL maintainer="Riddhesh Sanghvi <riddhesh237@gmail.com>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
2 changes: 1 addition & 1 deletion php/8.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.5.7-fpm
FROM php:8.5.11-fpm

LABEL maintainer="Riddhesh Sanghvi <riddhesh237@gmail.com>"
LABEL org.label-schema.schema-version="1.0.0"
Expand Down
Loading