Skip to content

Commit 4a43e49

Browse files
authored
Merge branch 'main' into release/webserver-improvements-and-fixes
2 parents d8dc11a + bda0ef1 commit 4a43e49

2 files changed

Lines changed: 13 additions & 16 deletions

File tree

.github/workflows/service_docker-build-and-publish.yml

Lines changed: 6 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -93,6 +93,9 @@ jobs:
9393
- name: Move PHP Versions file
9494
run: mv ./artifacts/php-versions.yml ${{ inputs.php-versions-file }}
9595

96+
- name: Set up Depot CLI
97+
uses: depot/setup-action@v1
98+
9699
##
97100
# Docker build & publish
98101
##
@@ -111,12 +114,6 @@ jobs:
111114
username: ${{ github.actor }}
112115
password: ${{ secrets.GITHUB_TOKEN }}
113116

114-
- name: Set up QEMU
115-
uses: docker/setup-qemu-action@v3
116-
117-
- name: Set up Docker Buildx
118-
uses: docker/setup-buildx-action@v3
119-
120117
- name: "📦 Assemble the Docker Tags"
121118
run: |
122119
chmod +x ./scripts/assemble-docker-tags.sh
@@ -167,11 +164,11 @@ jobs:
167164
echo "nginx_arg=NGINX_VERSION=$VERSION" >> $GITHUB_OUTPUT
168165
169166
- name: Build images
170-
uses: docker/build-push-action@v6
167+
uses: depot/build-push-action@v1
171168
with:
169+
project: ${{ secrets.DEPOT_PROJECT_ID }}
170+
token: ${{ secrets.DEPOT_PROJECT_TOKEN }}
172171
file: src/variations/${{ matrix.php_variation }}/Dockerfile
173-
cache-from: type=gha
174-
cache-to: type=gha
175172
build-args: |
176173
BASE_OS_VERSION=${{ matrix.base_os }}
177174
PHP_VERSION=${{ matrix.patch_version }}

scripts/conf/php-versions-base-config.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -95,31 +95,31 @@ operating_systems:
9595
- name: "Alpine 3.20"
9696
version: alpine3.20
9797
number: 3.20
98-
nginx_version: 1.28.1-r1
98+
nginx_version: 1.28.2-r1
9999
- name: "Alpine 3.21"
100100
version: alpine3.21
101101
number: 3.21
102-
nginx_version: 1.28.1-r1
102+
nginx_version: 1.28.2-r1
103103
- name: "Alpine 3.22"
104104
version: alpine3.22
105105
number: 3.22
106-
nginx_version: 1.28.1-r1
106+
nginx_version: 1.28.2-r1
107107
- name: "Alpine 3.23"
108108
version: alpine3.23
109109
number: 3.23
110-
nginx_version: 1.28.1-r1
110+
nginx_version: 1.28.2-r1
111111
- family: debian
112112
default: true
113113
versions:
114114
- name: "Debian Bullseye"
115115
version: bullseye
116116
number: 11
117-
nginx_version: 1.28.1-1~bullseye
117+
nginx_version: 1.28.2-1~bullseye
118118
- name: "Debian Bookworm"
119119
version: bookworm
120120
number: 12
121-
nginx_version: 1.28.1-1~bookworm
121+
nginx_version: 1.28.2-1~bookworm
122122
- name: "Debian Trixie"
123123
version: trixie
124124
number: 13
125-
nginx_version: 1.28.1-1~trixie
125+
nginx_version: 1.28.2-1~trixie

0 commit comments

Comments
 (0)