From 9d86e6f80f50b1a2f74b196f55494c53c629c112 Mon Sep 17 00:00:00 2001 From: Joel Beckmann Date: Fri, 17 Jan 2025 13:38:20 +0100 Subject: [PATCH] ci(actions): update node and php version --- .github/workflows/e2e.yml | 2 +- .github/workflows/lint.yml | 2 +- .github/workflows/manifests/php/dev.Dockerfile | 4 ++-- .github/workflows/manifests/php/prod.Dockerfile | 4 ++-- .github/workflows/release.yml | 4 ++-- 5 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index be520a4c..916e553c 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -36,7 +36,7 @@ jobs: strategy: fail-fast: true matrix: - php-versions: [ '8.2' ] + php-versions: [ '8.3' ] steps: - name: Install Symfony CLI run: wget https://get.symfony.com/cli/installer -O - | bash diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index f132574d..fd0e7192 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -44,7 +44,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - php-version: [ '8.2' ] + php-version: [ '8.3' ] steps: - name: Check out code diff --git a/.github/workflows/manifests/php/dev.Dockerfile b/.github/workflows/manifests/php/dev.Dockerfile index 1224c234..90be3f62 100644 --- a/.github/workflows/manifests/php/dev.Dockerfile +++ b/.github/workflows/manifests/php/dev.Dockerfile @@ -1,7 +1,7 @@ FROM composer:lts AS composer -FROM node:18-alpine AS builder +FROM node:23-alpine AS builder COPY . /build RUN apk add --no-cache \ python3 \ @@ -15,7 +15,7 @@ RUN yarn install \ && yarn dev -FROM php:8.2-fpm-alpine +FROM php:8.3-fpm-alpine ENV APP_ENV=dev diff --git a/.github/workflows/manifests/php/prod.Dockerfile b/.github/workflows/manifests/php/prod.Dockerfile index 95a05bb6..55e4099e 100644 --- a/.github/workflows/manifests/php/prod.Dockerfile +++ b/.github/workflows/manifests/php/prod.Dockerfile @@ -1,7 +1,7 @@ FROM composer:lts AS composer -FROM node:18-alpine AS builder +FROM node:23-alpine AS builder COPY . /build RUN apk add --no-cache \ python3 \ @@ -15,7 +15,7 @@ RUN yarn install \ && yarn build -FROM php:8.2-fpm-alpine +FROM php:8.3-fpm-alpine ENV APP_ENV=prod diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6ea20ecc..dea5a9ff 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,12 +16,12 @@ jobs: app_version: ${{ steps.step1.outputs.app_version }} steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v4 - name: Setup Nodejs uses: actions/setup-node@v3 with: - node-version: 18 + node-version: 23 - name: Install dependencies run: npm install @semantic-release/changelog @semantic-release/git @semantic-release/changelog @semantic-release/commit-analyzer @semantic-release/exec @semantic-release/git semantic-release/release-notes-generator