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 @@ -40,7 +40,7 @@ jobs:
echo "image_tag=$(cut -d: -f2 <<< '${{ matrix.image }}')" >> $GITHUB_ENV

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4

- name: Login to GitHub
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
Expand All @@ -57,7 +57,7 @@ jobs:

- name: Build and push
id: build
uses: docker/build-push-action@10e90e3645eae34f1e60eeb005ba3a3d33f178e8 # v6
uses: docker/build-push-action@d08e5c354a6adb9ed34480a06d141179aa583294 # v7
with:
context: "./${{ env.image_repo }}/${{ env.image_tag }}/"
platforms: linux/${{ matrix.arch }}
Expand Down Expand Up @@ -100,7 +100,7 @@ jobs:
merge-multiple: true

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@8d2750c68a42422c14e847fe6c8ac0403b4cbd6f # v3
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4

- name: Login to GitHub
uses: docker/login-action@b45d80f862d83dbcd57f89517bcf500b2ab88fb2 # v4
Expand Down
2 changes: 1 addition & 1 deletion abc-base/8.4/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.4-fpm-bookworm@sha256:9f7e5253a5f6a408b081837e9fca34b006c8a52c57a249ef662d705eae083144
FROM php:8.4-fpm-bookworm@sha256:440aaa5c9b4a9f8665cf65963e082a4ebd2697ce18f25e7dc639b46516674976

# Install dependencies and PHP extensions.
COPY ./apt /etc/apt
Expand Down
4 changes: 2 additions & 2 deletions abc-base/8.5/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM php:8.5-fpm-trixie@sha256:10855b6da433b9cbc9975bbf142850910ee1cb977390669f5630d1bdde57664b
FROM php:8.5-fpm-trixie@sha256:4521f34b4665a04d35ca607b6b12ca907c37e144b18e6638591cf664c2024f6a

# Install dependencies and PHP extensions.
COPY ./apt /etc/apt
Expand Down Expand Up @@ -84,7 +84,7 @@ RUN set -x \
&& install -d -o www-data -g www-data /var/log/nginx /var/cache/nginx

# Copy Composer.
COPY --from=composer:latest@sha256:f0809732b2188154b3faa8e44ab900595acb0b09cd0aa6c34e798efe4ebc9021 /usr/bin/composer /usr/local/bin/composer
COPY --from=composer:latest@sha256:bbb62a8c43e78c1a9e383cdb2eb21182201619c37a9b3127d8ce5fe597b98707 /usr/bin/composer /usr/local/bin/composer

# Copy MinIO client.
COPY --from=minio/mc:latest@sha256:a7fe349ef4bd8521fb8497f55c6042871b2ae640607cf99d9bede5e9bdf11727 /usr/bin/mc /usr/bin/mc
Expand Down