Skip to content

Commit 79dc5ee

Browse files
committed
chore: update to php 8.2 minimum
Signed-off-by: Matthew Penner <me@matthewp.io>
1 parent 4785c5d commit 79dc5ee

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

.github/workflows/ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
strategy:
1818
fail-fast: false
1919
matrix:
20-
php: [8.1, 8.2]
20+
php: [8.2, 8.3]
2121
database: ["mariadb:10.2", "mysql:8"]
2222
services:
2323
database:

.github/workflows/lint.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- name: Setup PHP
2222
uses: shivammathur/setup-php@v2
2323
with:
24-
php-version: "8.1"
24+
php-version: "8.2"
2525
extensions: bcmath, curl, gd, mbstring, mysql, openssl, pdo, tokenizer, xml, zip
2626
tools: composer:v2
2727
coverage: none

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ RUN yarn install --frozen-lockfile \
1010

1111
# Stage 1:
1212
# Build the actual container with all of the needed PHP dependencies that will run the application.
13-
FROM --platform=$TARGETOS/$TARGETARCH php:8.1-fpm-alpine
13+
FROM --platform=$TARGETOS/$TARGETARCH php:8.2-fpm-alpine
1414
WORKDIR /app
1515
COPY . ./
1616
COPY --from=0 /app/public/assets ./public/assets

0 commit comments

Comments
 (0)