From 0052d552f32f31c0c0717f3fc234d6c4a808093a Mon Sep 17 00:00:00 2001 From: kamil Date: Wed, 7 Jan 2026 07:09:45 +0100 Subject: [PATCH] - php 8.5 upgrade --- .github/workflows/check-dockerfile.yml | 2 +- .github/workflows/publish.yml | 2 +- Dockerfile | 4 ++-- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/check-dockerfile.yml b/.github/workflows/check-dockerfile.yml index b925984..5add77d 100644 --- a/.github/workflows/check-dockerfile.yml +++ b/.github/workflows/check-dockerfile.yml @@ -11,6 +11,6 @@ jobs: name: Test Dockerfile build runs-on: ubuntu-24.04 steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5.0.1 - name: Build the Docker image run: docker build . --file Dockerfile diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml index 202ceeb..2ead9b7 100644 --- a/.github/workflows/publish.yml +++ b/.github/workflows/publish.yml @@ -15,7 +15,7 @@ jobs: if: github.event_name == 'push' steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v5.0.1 - name: Build image run: docker build . --file ./Dockerfile --tag $IMAGE_NAME diff --git a/Dockerfile b/Dockerfile index d01859a..4b2d25d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -ARG PHP_VERSION=8.4-fpm-alpine -ARG COMPOSER_TAG_VERSION=2.8.7-bin +ARG PHP_VERSION=8.5-fpm-alpine +ARG COMPOSER_TAG_VERSION=2.9.3-bin FROM composer/composer:${COMPOSER_TAG_VERSION} AS composer_binary