diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5dfc28e..3f07765 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: fail-fast: false matrix: - php: ["8.2", "8.3"] + php: ["8.4"] steps: - name: Checkout @@ -34,13 +34,13 @@ jobs: run: composer ci - name: Build app - if: matrix.php == '8.2' + if: matrix.php == '8.4' run: composer ci:build - name: Upload build artifact - if: matrix.php == '8.2' + if: matrix.php == '8.4' uses: actions/upload-artifact@v4 with: - name: laracord-build-php82 + name: laracord-build-php84 path: builds/laracord if-no-files-found: error diff --git a/Dockerfile b/Dockerfile index bbe7c1c..315e436 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,4 @@ -FROM composer:2 AS builder +FROM composer:2-php8.4 AS builder WORKDIR /build @@ -10,7 +10,7 @@ RUN php laracord app:build \ && mkdir -p /out \ && cp builds/laracord /out/laracord -FROM php:8.2-cli-alpine AS runtime +FROM php:8.4-cli-alpine AS runtime WORKDIR /app COPY --from=builder /out/laracord /app/laracord