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
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
build:
uses: Ilyes512/github-actions/.github/workflows/build-php.yml@1.0.5
uses: Ilyes512/github-actions/.github/workflows/build-php.yml@1.0.12
strategy:
fail-fast: false
matrix:
Expand All @@ -36,7 +36,7 @@ jobs:
dockerfile: ${{ matrix.docker.dockerfile }}

merge:
uses: Ilyes512/github-actions/.github/workflows/merge-php.yml@1.0.5
uses: Ilyes512/github-actions/.github/workflows/merge-php.yml@1.0.12
needs: build
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ concurrency:

jobs:
build:
uses: Ilyes512/github-actions/.github/workflows/build-php.yml@1.0.5
uses: Ilyes512/github-actions/.github/workflows/build-php.yml@1.0.12
strategy:
fail-fast: false
matrix:
Expand All @@ -35,7 +35,7 @@ jobs:
dockerfile: ${{ matrix.docker.dockerfile }}

merge:
uses: Ilyes512/github-actions/.github/workflows/merge-php.yml@1.0.5
uses: Ilyes512/github-actions/.github/workflows/merge-php.yml@1.0.12
needs: build
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/tag.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ concurrency:

jobs:
build:
uses: Ilyes512/github-actions/.github/workflows/build-php.yml@1.0.5
uses: Ilyes512/github-actions/.github/workflows/build-php.yml@1.0.12
strategy:
fail-fast: false
matrix:
Expand All @@ -36,7 +36,7 @@ jobs:
dockerfile: ${{ matrix.docker.dockerfile }}

merge:
uses: Ilyes512/github-actions/.github/workflows/merge-php.yml@1.0.5
uses: Ilyes512/github-actions/.github/workflows/merge-php.yml@1.0.12
needs: build
strategy:
matrix:
Expand Down
6 changes: 3 additions & 3 deletions apache/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Latest version of PHP base image: https://hub.docker.com/_/php/tags
FROM php:8.3.29-apache-trixie AS runtime
FROM php:8.3.30-apache-trixie AS runtime

ARG UNIQUE_ID_FOR_CACHEFROM=runtime

Expand All @@ -12,7 +12,7 @@ ARG PHP_REDIS_VERSION=6.3.0
# Latest version of memcached-extension: https://pecl.php.net/package/memcached
ARG PHP_MEMCACHED_VERSION=3.4.0
# Latest version of amqp-extension: https://pecl.php.net/package/amqp
ARG PHP_AMQP_VERSION=2.1.2
ARG PHP_AMQP_VERSION=2.2.0

ENV SMTPHOST=mail
ENV SMTPEHLO=localhost
Expand Down Expand Up @@ -140,7 +140,7 @@ ARG UNIQUE_ID_FOR_CACHEFROM=builder
# Latest version of Phive: https://api.github.com/repos/phar-io/phive/releases/latest
ARG PHIVE_VERSION=0.16.0
# Latest version of Composer: https://getcomposer.org/download
ARG COMPOSER_VERSION=2.9.2
ARG COMPOSER_VERSION=2.9.5
# Latest version of Xdebug: https://github.com/xdebug/xdebug/tags or https://pecl.php.net/package/xdebug
ARG XDEBUG_VERSION=3.5.0
# Latest version of pcov: https://github.com/krakjoe/pcov/tags or https://pecl.php.net/package/pcov
Expand Down
6 changes: 3 additions & 3 deletions fpm/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Latest version of PHP base image: https://hub.docker.com/_/php/tags
FROM php:8.3.29-fpm-trixie AS runtime
FROM php:8.3.30-fpm-trixie AS runtime

ARG UNIQUE_ID_FOR_CACHEFROM=runtime

Expand All @@ -12,7 +12,7 @@ ARG PHP_REDIS_VERSION=6.3.0
# Latest version of memcached-extension: https://pecl.php.net/package/memcached
ARG PHP_MEMCACHED_VERSION=3.4.0
# Latest version of amqp-extension: https://pecl.php.net/package/amqp
ARG PHP_AMQP_VERSION=2.1.2
ARG PHP_AMQP_VERSION=2.2.0

ENV SMTPHOST=mail
ENV SMTPEHLO=localhost
Expand Down Expand Up @@ -140,7 +140,7 @@ ARG UNIQUE_ID_FOR_CACHEFROM=builder
# Latest version of Phive: https://api.github.com/repos/phar-io/phive/releases/latest
ARG PHIVE_VERSION=0.16.0
# Latest version of Composer: https://getcomposer.org/download
ARG COMPOSER_VERSION=2.9.2
ARG COMPOSER_VERSION=2.9.5
# Latest version of Xdebug: https://github.com/xdebug/xdebug/tags or https://pecl.php.net/package/xdebug
ARG XDEBUG_VERSION=3.5.0
# Latest version of pcov: https://github.com/krakjoe/pcov/tags or https://pecl.php.net/package/pcov
Expand Down