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
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,10 +26,10 @@ jobs:
max-parallel: 10
matrix:
variant: [apache, fpm, fpm-alpine]
version: [1.7.1, 1.6.16]
version: [1.7.2, 1.6.17]
target: [root, nonroot]
include:
- version: 1.7.1
- version: 1.7.2
tag_as_latest_arg: "--tag-as-latest"
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
max-parallel: 10
matrix:
variant: [apache, fpm, fpm-alpine]
version: [1.7.1, 1.6.16]
version: [1.7.2, 1.6.17]
target: [root, nonroot]
steps:
- name: Checkout repository
Expand Down
2 changes: 1 addition & 1 deletion apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.4-apache AS root
# Define Roundcubemail version
# Use an ARG to make it overwritable from a build argument and not leak into the container runtime
# environment.
ARG ROUNDCUBEMAIL_VERSION=1.7.1
ARG ROUNDCUBEMAIL_VERSION=1.7.2

# Define the GPG key used for the bundle verification process
ARG ROUNDCUBEMAIL_KEYID="F3E4 C04B B3DB 5D42 15C4 5F7F 5AB2 BAA1 41C4 F7D5"
Expand Down
2 changes: 1 addition & 1 deletion fpm-alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.4-fpm-alpine3.21 AS root
# Define Roundcubemail version
# Use an ARG to make it overwritable from a build argument and not leak into the container runtime
# environment.
ARG ROUNDCUBEMAIL_VERSION=1.7.1
ARG ROUNDCUBEMAIL_VERSION=1.7.2

# Define the GPG key used for the bundle verification process
ARG ROUNDCUBEMAIL_KEYID="F3E4 C04B B3DB 5D42 15C4 5F7F 5AB2 BAA1 41C4 F7D5"
Expand Down
2 changes: 1 addition & 1 deletion fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ FROM php:8.4-fpm AS root
# Define Roundcubemail version
# Use an ARG to make it overwritable from a build argument and not leak into the container runtime
# environment.
ARG ROUNDCUBEMAIL_VERSION=1.7.1
ARG ROUNDCUBEMAIL_VERSION=1.7.2

# Define the GPG key used for the bundle verification process
ARG ROUNDCUBEMAIL_KEYID="F3E4 C04B B3DB 5D42 15C4 5F7F 5AB2 BAA1 41C4 F7D5"
Expand Down