Skip to content

Commit

Permalink
fix: caddy build
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaud-ritti authored Feb 27, 2024
1 parent 95d0ebb commit 54f6601
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_php.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["7.4", "8.0", "8.1", "8.2"]
version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
variant: [cli, fpm]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -130,7 +130,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["7.4", "8.0", "8.1", "8.2"]
version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
variant: [fpm-wkhtmltopdf, cli-wkhtmltopdf]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -241,7 +241,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["7.4", "8.0", "8.1", "8.2"]
version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
variant: [caddy, caddy-wkhtmltopdf]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -352,7 +352,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["7.4", "8.0", "8.1", "8.2"]
version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
variant: [nginx, nginx-wkhtmltopdf]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -462,7 +462,7 @@ jobs:
strategy:
fail-fast: false
matrix:
version: ["7.4", "8.0", "8.1", "8.2"]
version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
variant: [apache, apache-wkhtmltopdf]
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -573,7 +573,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php_version: ["7.4", "8.0", "8.1", "8.2"]
php_version: ["7.4", "8.0", "8.1", "8.2", "8.3"]
node_version: ["14", "16", "18", "19"]
variant: [apache, apache-wkhtmltopdf, caddy, caddy-wkhtmltopdf, nginx, nginx-wkhtmltopdf]
steps:
Expand Down
4 changes: 2 additions & 2 deletions php/Dockerfile.caddy
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# syntax=docker/dockerfile:1
ARG PHP_VERSION
ARG CADDY_VERSION="2.7.4"
ARG CADDY_VERSION="2.7.6"
FROM caddy:${CADDY_VERSION}-builder-alpine AS caddy-builder
RUN xcaddy build \
--with github.com/dunglas/mercure \
--with github.com/dunglas/mercure/caddy



FROM adeliom/php:${PHP_VERSION}-fpm

RUN set -eux; \
Expand Down
4 changes: 2 additions & 2 deletions php/Dockerfile.caddy-wkhtmltopdf
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
# syntax=docker/dockerfile:1
ARG PHP_VERSION
ARG CADDY_VERSION="2.7.4"
ARG CADDY_VERSION="2.7.6"
FROM caddy:${CADDY_VERSION}-builder-alpine AS caddy-builder
RUN xcaddy build \
--with github.com/dunglas/mercure \
--with github.com/dunglas/mercure/caddy



FROM adeliom/php:${PHP_VERSION}-fpm-wkhtmltopdf

RUN set -eux; \
Expand Down

0 comments on commit 54f6601

Please sign in to comment.