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
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: specsnl/github-actions/.github/workflows/build-php.yml@1.2.3
uses: specsnl/github-actions/.github/workflows/build-php.yml@2.1.0
strategy:
fail-fast: false
matrix:
Expand All @@ -38,7 +38,7 @@ jobs:
dockerfile: ${{ matrix.docker.dockerfile }}

merge:
uses: specsnl/github-actions/.github/workflows/merge-php.yml@1.2.3
uses: specsnl/github-actions/.github/workflows/merge-php.yml@2.1.0
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: specsnl/github-actions/.github/workflows/build-php.yml@1.2.3
uses: specsnl/github-actions/.github/workflows/build-php.yml@2.1.0
strategy:
fail-fast: false
matrix:
Expand All @@ -37,7 +37,7 @@ jobs:
dockerfile: ${{ matrix.docker.dockerfile }}

merge:
uses: specsnl/github-actions/.github/workflows/merge-php.yml@1.2.3
uses: specsnl/github-actions/.github/workflows/merge-php.yml@2.1.0
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: specsnl/github-actions/.github/workflows/build-php.yml@1.2.3
uses: specsnl/github-actions/.github/workflows/build-php.yml@2.1.0
strategy:
fail-fast: false
matrix:
Expand All @@ -38,7 +38,7 @@ jobs:
dockerfile: ${{ matrix.docker.dockerfile }}

merge:
uses: specsnl/github-actions/.github/workflows/merge-php.yml@1.2.3
uses: specsnl/github-actions/.github/workflows/merge-php.yml@2.1.0
needs: build
strategy:
matrix:
Expand Down
4 changes: 2 additions & 2 deletions apache/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# check=error=true

# Latest version of PHP base image: https://hub.docker.com/_/php/tags
FROM php:8.5.6-apache-trixie AS runtime
FROM php:8.5.7-apache-trixie AS runtime

ARG DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -149,7 +149,7 @@ ARG PHIVE_VERSION=0.16.0
# Latest version of Composer: https://getcomposer.org/download
ARG COMPOSER_VERSION=2.10.1
# Latest version of Xdebug: https://packagist.org/packages/xdebug/xdebug
ARG XDEBUG_VERSION=3.5.1
ARG XDEBUG_VERSION=3.5.3
# Latest version of pcov: https://packagist.org/packages/pecl/pcov
ARG PCOV_VERSION=1.0.12

Expand Down
4 changes: 2 additions & 2 deletions fpm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# check=error=true

# Latest version of PHP base image: https://hub.docker.com/_/php/tags
FROM php:8.5.6-fpm-trixie AS runtime
FROM php:8.5.7-fpm-trixie AS runtime

ARG DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -149,7 +149,7 @@ ARG PHIVE_VERSION=0.16.0
# Latest version of Composer: https://getcomposer.org/download
ARG COMPOSER_VERSION=2.10.1
# Latest version of Xdebug: https://packagist.org/packages/xdebug/xdebug
ARG XDEBUG_VERSION=3.5.1
ARG XDEBUG_VERSION=3.5.3
# Latest version of pcov: https://packagist.org/packages/pecl/pcov
ARG PCOV_VERSION=1.0.12

Expand Down
4 changes: 2 additions & 2 deletions frankenphp/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# check=error=true

# Latest version of FrankenPHP base image: https://hub.docker.com/r/dunglas/frankenphp/tags
FROM dunglas/frankenphp:1.12.4-php8.5.6-trixie AS runtime
FROM dunglas/frankenphp:1.12.4-php8.5.7-trixie AS runtime

ARG DEBIAN_FRONTEND=noninteractive

Expand Down Expand Up @@ -154,7 +154,7 @@ ARG PHIVE_VERSION=0.16.0
# Latest version of Composer: https://getcomposer.org/download
ARG COMPOSER_VERSION=2.10.1
# Latest version of Xdebug: https://packagist.org/packages/xdebug/xdebug
ARG XDEBUG_VERSION=3.5.1
ARG XDEBUG_VERSION=3.5.3
# Latest version of pcov: https://packagist.org/packages/pecl/pcov
ARG PCOV_VERSION=1.0.12

Expand Down
Loading