Skip to content
Open
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
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,11 @@ Changelog", this file is a reverse-chronological list of merged pull requests.

## Open PR's

- [PR-147](https://github.com/itk-dev/devops_itkdev-docker/pull/147) - 2026-07-08 -
Pull `phpfpm` and its dependencies up front
(`docker compose pull --quiet --include-deps phpfpm`) in the Composer, Twig
and PHP workflow templates so the images download in parallel before the job
runs
- [PR-145](https://github.com/itk-dev/devops_itkdev-docker/pull/145) - 2026-07-08 -
Updated GitHub Actions to latest versions (`actions/checkout` to `v7`,
`go-task/setup-task` to `v2`) in workflow templates and repository CI
Expand Down
9 changes: 9 additions & 0 deletions github/workflows/composer.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ jobs:
run: |
docker network create frontend

- name: Pull container images
run: docker compose pull --quiet --include-deps phpfpm

- run: |
docker compose run --rm phpfpm composer validate --strict

Expand All @@ -62,6 +65,9 @@ jobs:
run: |
docker network create frontend

- name: Pull container images
run: docker compose pull --quiet --include-deps phpfpm

- run: |
docker compose run --rm phpfpm composer install
docker compose run --rm phpfpm composer normalize --dry-run
Expand All @@ -75,5 +81,8 @@ jobs:
run: |
docker network create frontend

- name: Pull container images
run: docker compose pull --quiet --include-deps phpfpm

- run: |
docker compose run --rm phpfpm composer audit --locked
3 changes: 3 additions & 0 deletions github/workflows/drupal-module/php.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
run: |
docker network create frontend

- name: Pull container images
run: docker compose pull --quiet --include-deps phpfpm

- run: |
docker compose run --rm phpfpm composer install
docker compose run --rm phpfpm vendor/bin/phpcs
3 changes: 3 additions & 0 deletions github/workflows/drupal/php.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
run: |
docker network create frontend

- name: Pull container images
run: docker compose pull --quiet --include-deps phpfpm

- run: |
docker compose run --rm phpfpm composer install
docker compose run --rm phpfpm vendor/bin/phpcs
3 changes: 3 additions & 0 deletions github/workflows/symfony/php.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,9 @@ jobs:
run: |
docker network create frontend

- name: Pull container images
run: docker compose pull --quiet --include-deps phpfpm

- run: |
docker compose run --rm phpfpm composer install
# https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/blob/master/doc/usage.rst#the-check-command
Expand Down
3 changes: 3 additions & 0 deletions github/workflows/twig.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ jobs:
run: |
docker network create frontend

- name: Pull container images
run: docker compose pull --quiet --include-deps phpfpm

- run: |
docker compose run --rm phpfpm composer install
docker compose run --rm phpfpm vendor/bin/twig-cs-fixer lint