From f5ef7693550b02d8c0016e14f709b50192f96d7c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 1 Mar 2026 19:22:29 +0000 Subject: [PATCH 1/3] Bump php from 8.4.14-alpine to 8.5.3-alpine Bumps php from 8.4.14-alpine to 8.5.3-alpine. --- updated-dependencies: - dependency-name: php dependency-version: 8.5.3-alpine dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index a6a447b..1402dd3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM php:8.4.14-alpine +FROM php:8.5.3-alpine ENV COMPOSER_HOME="/tmp/composer" From f4237c1a8b5daacfb4a7ae17c694115f380aa87a Mon Sep 17 00:00:00 2001 From: Alexander Gomzyakov Date: Fri, 6 Mar 2026 04:19:03 +0000 Subject: [PATCH 2/3] Update PHP version in workflows to 8.5.3 --- .github/workflows/code-style.yml | 4 ++-- .github/workflows/phpstan.yml | 4 ++-- .github/workflows/phpunit.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index 46b606b..7211c04 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -15,10 +15,10 @@ jobs: - name: Checkout code uses: actions/checkout@v6 - - name: Setup PHP 8.3 + - name: Setup PHP 8.5 uses: shivammathur/setup-php@v2 with: - php-version: 8.3 + php-version: 8.5 - name: Install Composer Dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist diff --git a/.github/workflows/phpstan.yml b/.github/workflows/phpstan.yml index 4b8a564..93c8696 100644 --- a/.github/workflows/phpstan.yml +++ b/.github/workflows/phpstan.yml @@ -15,10 +15,10 @@ jobs: - name: Checkout code uses: actions/checkout@v6 - - name: Setup PHP 8.3 + - name: Setup PHP 8.5.3 uses: shivammathur/setup-php@v2 with: - php-version: 8.3 + php-version: 8.5.3 - name: Install Composer dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 761ef1f..6f64633 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '8.3', '8.4', '8.5' ] + php: [ '8.3', '8.4', '8.5.3' ] steps: - name: Checkout Code From 52b6c344422adecd03fe4864182df49c25d7f538 Mon Sep 17 00:00:00 2001 From: Alexander Gomzyakov Date: Fri, 6 Mar 2026 04:20:59 +0000 Subject: [PATCH 3/3] Update PHP version in workflows to 8.5.3 and adjust matrix for PHPUnit --- .github/workflows/code-style.yml | 4 ++-- .github/workflows/phpunit.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/code-style.yml b/.github/workflows/code-style.yml index 7211c04..adff027 100644 --- a/.github/workflows/code-style.yml +++ b/.github/workflows/code-style.yml @@ -15,10 +15,10 @@ jobs: - name: Checkout code uses: actions/checkout@v6 - - name: Setup PHP 8.5 + - name: Setup PHP 8.5.3 uses: shivammathur/setup-php@v2 with: - php-version: 8.5 + php-version: 8.5.3 - name: Install Composer Dependencies run: composer install -q --no-ansi --no-interaction --no-scripts --no-progress --prefer-dist diff --git a/.github/workflows/phpunit.yml b/.github/workflows/phpunit.yml index 6f64633..761ef1f 100644 --- a/.github/workflows/phpunit.yml +++ b/.github/workflows/phpunit.yml @@ -13,7 +13,7 @@ jobs: strategy: fail-fast: false matrix: - php: [ '8.3', '8.4', '8.5.3' ] + php: [ '8.3', '8.4', '8.5' ] steps: - name: Checkout Code