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
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
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
# 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.84.1"
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
Loading
Loading