Skip to content

Commit afb4de6

Browse files
committed
Build containers for PHP > 8.1
1 parent 3aeefd0 commit afb4de6

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/create-images.yml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,15 +63,18 @@ jobs:
6363
- "7.4"
6464
- "8.0"
6565
- "8.1"
66+
- "8.2"
67+
- "8.3"
68+
- "8.4"
6669
steps:
6770
-
6871
name: Checkout
69-
uses: actions/checkout@v2
72+
uses: actions/checkout@v4
7073
-
7174
name: Create initial image
7275
run: |
7376
PHP_VERSION_DOCKERSUFFIX=''
74-
if [ "${{ matrix.php-version }}" = '8.1' ]; then
77+
if [ "${{ matrix.php-version }}" = '8.4' ]; then
7578
PHP_VERSION_DOCKERSUFFIX='-rc'
7679
fi
7780
docker build \
@@ -172,7 +175,7 @@ jobs:
172175
-
173176
name: Upload image
174177
if: needs.inspect.outputs.publish == 'no'
175-
uses: actions/upload-artifact@v2
178+
uses: actions/upload-artifact@v4
176179
with:
177180
name: base-image-${{ matrix.php-version }}
178181
path: /tmp/base-image-${{ matrix.php-version }}.tgz
@@ -227,6 +230,15 @@ jobs:
227230
- php-version: "8.1"
228231
graphicsmagic-version: "1.3.36"
229232
imagemagick-version: "7.1.0-8"
233+
- php-version: "8.2"
234+
graphicsmagic-version: "1.3.36"
235+
imagemagick-version: "7.1.0-8"
236+
- php-version: "8.3"
237+
graphicsmagic-version: "1.3.36"
238+
imagemagick-version: "7.1.0-8"
239+
- php-version: "8.4"
240+
graphicsmagic-version: "1.3.36"
241+
imagemagick-version: "7.1.0-8"
230242
extensions:
231243
- "gd-gmagick"
232244
- "gd-imagick"

0 commit comments

Comments
 (0)