Skip to content

Commit 2deaf39

Browse files
authored
Merge pull request #436 from jakzal/toolbox-update
Update toolbox 1.84.1 -> 1.85.0
2 parents 954d217 + 0860ec1 commit 2deaf39

File tree

5 files changed

+89
-92
lines changed

5 files changed

+89
-92
lines changed

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
fail-fast: false
1818
matrix:
1919
flavour: [debian, alpine]
20-
php: ['8.1', '8.2', '8.3']
20+
php: ['8.1', '8.2', '8.3', '8.4']
2121
outputs:
2222
push: ${{ steps.version.outputs.push }}
2323
steps:
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
DOCKER_IMAGE=jakzal/phpqa
3030
VERSION=master
31-
LATEST_PHP_VERSION="8.3"
31+
LATEST_PHP_VERSION="8.4"
3232
LATEST_FLAVOUR="debian"
3333
3434
# jakzal/phpqa:phpX.X-debian, jakzal/phpqa:phpX.X
@@ -170,7 +170,7 @@ jobs:
170170
fail-fast: false
171171
matrix:
172172
flavour: [debian, alpine]
173-
php: ['8.1', '8.2', '8.3']
173+
php: ['8.1', '8.2', '8.3', '8.4']
174174
platform: ['linux/arm64','linux/amd64']
175175
include:
176176
- platform: 'linux/arm64'

.github/workflows/nightly-builds.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
matrix:
1313
flavour: [debian, alpine]
14-
php: ['8.3']
14+
php: ['8.4']
1515
steps:
1616
- uses: actions/checkout@v4
1717
- run: make build-nightly-${{matrix.flavour}}

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
# syntax=docker/dockerfile:1.4
22

3-
ARG PHP_VERSION=8.3
3+
ARG PHP_VERSION=8.4
44
ARG TOOLBOX_EXCLUDED_TAGS="exclude-php:${PHP_VERSION}"
5-
ARG TOOLBOX_VERSION="1.84.1"
5+
ARG TOOLBOX_VERSION="1.85.0"
66
ARG FLAVOUR="alpine"
77

88

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
PHP_VERSIONS := 8.1 8.2 8.3
1+
PHP_VERSIONS := 8.1 8.2 8.3 8.4
22
PHP_VERSION ?= $(lastword $(sort $(PHP_VERSIONS)))
33
COMPOSER_AUTHDIR ?= $(shell composer config --global home)
44
ifneq ("", "$(COMPOSER_AUTHDIR)")

0 commit comments

Comments
 (0)