Skip to content

Commit cd503e9

Browse files
committed
Update github actions with new image and newer action versions
1 parent 5e6747f commit cd503e9

File tree

1 file changed

+15
-3
lines changed

1 file changed

+15
-3
lines changed

.github/workflows/docker-build.yaml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,18 @@ jobs:
8282
tags: phpdockerio/php:8.3-fpm
8383
tertiary: ~
8484

85+
- name: php84
86+
folder: php/8.4
87+
arch: [ linux/amd64, linux/arm64, linux/arm/v7 ]
88+
targets:
89+
primary:
90+
name: cli
91+
tags: phpdockerio/php:8.4-cli
92+
secondary:
93+
name: fpm
94+
tags: phpdockerio/php:8.4-fpm
95+
tertiary: ~
96+
8597
steps:
8698
- name: Checkout
8799
uses: actions/checkout@v4
@@ -105,7 +117,7 @@ jobs:
105117
password: ${{ secrets.DOCKERHUB_TOKEN }}
106118

107119
- name: Primary container
108-
uses: docker/build-push-action@v5
120+
uses: docker/build-push-action@v6
109121
with:
110122
context: ${{ matrix.folder }}
111123
platforms: ${{ join(matrix.arch, ',') }}
@@ -116,7 +128,7 @@ jobs:
116128

117129
- name: Secondary container
118130
if: matrix.targets.secondary
119-
uses: docker/build-push-action@v5
131+
uses: docker/build-push-action@v6
120132
with:
121133
context: ${{ matrix.folder }}
122134
platforms: ${{ join(matrix.arch, ',') }}
@@ -127,7 +139,7 @@ jobs:
127139

128140
- name: Tertiary container
129141
if: matrix.targets.tertiary
130-
uses: docker/build-push-action@v5
142+
uses: docker/build-push-action@v6
131143
with:
132144
context: ${{ matrix.folder }}
133145
platforms: ${{ join(matrix.arch, ',') }}

0 commit comments

Comments
 (0)