7 Commits

Author SHA1 Message Date
jcabillot 1c6a1e4b7d Merge pull request 'chore(deps): update php docker tag to v8.5' (#6) from renovate/php-8.x into master
Main Release / hadolint (push) Successful in 12s
Main Release / test (push) Successful in 54s
Main Release / build (push) Successful in 16s
Main Release / tag (push) Successful in 17s
Tag Release / hadolint (push) Successful in 12s
Tag Release / test (push) Successful in 52s
Tag Release / build-push (push) Successful in 4m9s
Reviewed-on: #6
2026-06-29 15:35:01 -04:00
renovate d1b6ff6692 chore(deps): update php docker tag to v8.5
PR Checks / hadolint (pull_request) Successful in 10s
PR Checks / build-test (pull_request) Successful in 56s
2026-06-29 14:55:46 +00:00
jcabillot fedce3c65e Merge pull request 'fix: image name php-apache → phpapache + cron -latest tags' (#13) from fix/image-name-and-cron-tags into master
Main Release / hadolint (push) Successful in 6s
Main Release / test (push) Successful in 12s
Main Release / build (push) Successful in 16s
Main Release / tag (push) Successful in 15s
Tag Release / hadolint (push) Successful in 10s
Tag Release / test (push) Successful in 51s
Tag Release / build-push (push) Successful in 1m39s
Reviewed-on: #13
2026-06-29 10:50:22 -04:00
Sagent 4a0303f483 fix: image name php-apache → phpapache, cron missing -latest tags
PR Checks / hadolint (pull_request) Successful in 10s
PR Checks / build-test (pull_request) Successful in 15s
2026-06-29 14:34:24 +00:00
jcabillot 5ea637337f Merge pull request 'fix(ci): correct corrupted docker/build-push-action SHA' (#12) from fix/build-push-action-sha into master
Main Release / hadolint (push) Successful in 9s
Main Release / test (push) Successful in 15s
Main Release / build (push) Successful in 13s
Main Release / tag (push) Successful in 11s
Tag Release / hadolint (push) Successful in 6s
Tag Release / test (push) Successful in 12s
Tag Release / build-push (push) Successful in 1m28s
Reviewed-on: #12
2026-06-29 08:12:29 -04:00
cloudix_mcp_server e5d211a4ed fix(ci): correct corrupted docker/build-push-action SHA
PR Checks / hadolint (pull_request) Successful in 7s
PR Checks / build-test (pull_request) Successful in 51s
Same 0d7f5c8f -> 0d6e8b85 corruption as web/ip. Fixes CI run #2402 job #6066.
2026-06-29 12:10:33 +00:00
jcabillot 3ca3ced7c0 Merge pull request 'chore(deps): update actions/checkout action to v7' (#11) from renovate/actions-checkout-7.x into master
Main Release / hadolint (push) Successful in 1m23s
Main Release / test (push) Successful in 2m29s
Main Release / build (push) Successful in 12s
Main Release / tag (push) Successful in 33s
Tag Release / hadolint (push) Successful in 23s
Tag Release / test (push) Successful in 1m36s
Tag Release / build-push (push) Failing after 2m18s
Reviewed-on: #11
2026-06-18 16:22:31 -04:00
4 changed files with 7 additions and 7 deletions
+3 -3
View File
@@ -41,10 +41,10 @@ jobs:
- id: meta
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6
with:
images: jcabillot/php-apache
images: jcabillot/phpapache
tags: |
type=raw,value=${{ steps.get-latest-tag.outputs.tag }}-latest,enable=${{ steps.get-latest-tag.outputs.tag != '' }}
- uses: docker/build-push-action@f9f3042f7e2789586610d7f5c8f03e5195baf # v7.2.0
type=raw,value=${{ steps.get-latest-tag.outputs.tag }}-latest,enable=${{ steps.get-latest-tag.outputs.tag != '' }} type=raw,value=${{ steps.get-latest-tag.outputs.tag }}-latest,enable=${{ steps.get-latest-tag.outputs.tag != '' }}
- uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
with:
context: .
push: true
+1 -1
View File
@@ -28,7 +28,7 @@ jobs:
steps:
- uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7
- uses: docker/setup-buildx-action@d7f5e7f509e45cec5c76c4d5afdd7de93d0b3df5 # v4
- run: docker build -t jcabillot/php-apache:${{ github.sha }} .
- run: docker build -t jcabillot/phpapache:${{ github.sha }} .
tag:
needs: [build]
+2 -2
View File
@@ -35,11 +35,11 @@ jobs:
- id: meta
uses: docker/metadata-action@80c7e94dd9b9319bd5eb7a0e0fe9291e23a2a2e9 # v6
with:
images: jcabillot/php-apache
images: jcabillot/phpapache
tags: |
type=ref,event=tag
type=ref,event=tag,suffix=-latest
- uses: docker/build-push-action@f9f3042f7e2789586610d7f5c8f03e5195baf # v7.2.0
- uses: docker/build-push-action@f9f3042f7e2789586610d6e8b85c8f03e5195baf # v7.2.0
with:
context: .
push: true
+1 -1
View File
@@ -1,4 +1,4 @@
FROM php:8.3-apache
FROM php:8.5-apache
LABEL maintainer="Julien Cabillot <dockerimages@cabillot.eu>"
# hadolint ignore=DL3008,DL3015,SC3009