Skip to content

Commit 275eb1a

Browse files
committed
upgrade to php 8.3
also: * fix environment syntax to preferred one * gh action: do not fail the whole matrix when one job fails
1 parent b79d4f8 commit 275eb1a

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ jobs:
3737
if: ${{ needs.buildmatrix.outputs.matrix != '[]' }}
3838
strategy:
3939
matrix: ${{fromJson(needs.buildmatrix.outputs.matrix)}}
40+
fail-fast: false
4041
steps:
4142
-
4243
name: Checkout

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:8.2-apache AS dokuwiki-base
1+
FROM php:8.3-apache AS dokuwiki-base
22

33
# additional extensions can be passed as build-arg
44
ARG PHP_EXTENSIONS=""
@@ -11,9 +11,9 @@ FROM dokuwiki-base
1111

1212
ARG DOKUWIKI_VERSION=stable
1313

14-
ENV PHP_UPLOADLIMIT 128M
15-
ENV PHP_MEMORYLIMIT 256M
16-
ENV PHP_TIMEZONE UTC
14+
ENV PHP_UPLOADLIMIT=128M
15+
ENV PHP_MEMORYLIMIT=256M
16+
ENV PHP_TIMEZONE=UTC
1717

1818
COPY root /
1919
RUN /bin/bash /build-setup.sh

0 commit comments

Comments
 (0)