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