Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
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/check-dockerfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ on:
jobs:
build:
name: Test Dockerfile build
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4
- name: Build the Docker image
run: docker build . --file Dockerfile
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ env:
jobs:
push:
name: Push to GHCR
runs-on: ubuntu-20.04
runs-on: ubuntu-22.04
if: github.event_name == 'push'

steps:
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
ARG PHP_VERSION=8.3.1-fpm-alpine
ARG COMPOSER_TAG_VERSION=2.6.6-bin
ARG PHP_VERSION=8.4-fpm-alpine
ARG COMPOSER_TAG_VERSION=2.8.7-bin

FROM composer/composer:${COMPOSER_TAG_VERSION} AS composer_binary

Expand Down