Skip to content

Commit

Permalink
Build PHP 8.4 images
Browse files Browse the repository at this point in the history
  • Loading branch information
jakzal committed Dec 11, 2024
1 parent c3fabe6 commit 0860ec1
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
fail-fast: false
matrix:
flavour: [debian, alpine]
php: ['8.1', '8.2', '8.3']
php: ['8.1', '8.2', '8.3', '8.4']
outputs:
push: ${{ steps.version.outputs.push }}
steps:
Expand All @@ -28,7 +28,7 @@ jobs:
run: |
DOCKER_IMAGE=jakzal/phpqa
VERSION=master
LATEST_PHP_VERSION="8.3"
LATEST_PHP_VERSION="8.4"
LATEST_FLAVOUR="debian"
# jakzal/phpqa:phpX.X-debian, jakzal/phpqa:phpX.X
Expand Down Expand Up @@ -170,7 +170,7 @@ jobs:
fail-fast: false
matrix:
flavour: [debian, alpine]
php: ['8.1', '8.2', '8.3']
php: ['8.1', '8.2', '8.3', '8.4']
platform: ['linux/arm64','linux/amd64']
include:
- platform: 'linux/arm64'
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/nightly-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
strategy:
matrix:
flavour: [debian, alpine]
php: ['8.3']
php: ['8.4']
steps:
- uses: actions/checkout@v4
- run: make build-nightly-${{matrix.flavour}}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# syntax=docker/dockerfile:1.4

ARG PHP_VERSION=8.3
ARG PHP_VERSION=8.4
ARG TOOLBOX_EXCLUDED_TAGS="exclude-php:${PHP_VERSION}"
ARG TOOLBOX_VERSION="1.85.0"
ARG FLAVOUR="alpine"
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
PHP_VERSIONS := 8.1 8.2 8.3
PHP_VERSIONS := 8.1 8.2 8.3 8.4
PHP_VERSION ?= $(lastword $(sort $(PHP_VERSIONS)))
COMPOSER_AUTHDIR ?= $(shell composer config --global home)
ifneq ("", "$(COMPOSER_AUTHDIR)")
Expand Down

0 comments on commit 0860ec1

Please sign in to comment.