From dd14cf2ea0b52bf50ee8e9fb17ac51aeeab89f82 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Maia?= Date: Sat, 22 Aug 2026 21:12:36 -0300 Subject: [PATCH] feat: publish version-tagged PHP images for Dependabot MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Publish ghcr.io/librecodecoop/nextcloud-dev: (and - for pinning) alongside the existing nextcloud-dev-php8X images. With the PHP version in the tag instead of the image name, consumers can reference a literal tag and let Dependabot's docker ecosystem open the bump PR when a new PHP version image is published. Closes #123 Assisted-by: Claude Code:claude-fable-5 Signed-off-by: André Maia --- .github/workflows/docker-php.yml | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/.github/workflows/docker-php.yml b/.github/workflows/docker-php.yml index c1d248f..211815d 100644 --- a/.github/workflows/docker-php.yml +++ b/.github/workflows/docker-php.yml @@ -23,6 +23,13 @@ jobs: - php81 - php82 - php83 + include: + - container: php81 + version: '8.1' + - container: php82 + version: '8.2' + - container: php83 + version: '8.3' permissions: packages: write contents: read @@ -77,6 +84,8 @@ jobs: tags: | ghcr.io/librecodecoop/nextcloud-dev-${{ matrix.container }}:${{ github.sha }} ghcr.io/librecodecoop/nextcloud-dev-${{ matrix.container }}:latest + ghcr.io/librecodecoop/nextcloud-dev:${{ matrix.version }} + ghcr.io/librecodecoop/nextcloud-dev:${{ matrix.version }}-${{ github.sha }} cache-from: type=local,src=/tmp/.buildx-cache cache-to: type=local,dest=/tmp/.buildx-cache-new - name: Move cache