Skip to content

Commit

Permalink
⬆️Upgrade to Node.js 22 and PHP 8.3 (#1461)
Browse files Browse the repository at this point in the history
Co-authored-by: Jonathan Beliën <[email protected]>
  • Loading branch information
jbelien and jbelien authored Oct 20, 2024
1 parent cdd9677 commit 1170aa1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-versions: [ '8.2', '8.3' ] # See https://www.php.net/supported-versions.php
php-versions: [ '8.3' ] # See https://www.php.net/supported-versions.php
steps:
- uses: actions/checkout@v4
- uses: shivammathur/setup-php@v2
Expand Down Expand Up @@ -46,7 +46,7 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [ 16.x, 18.x ] # See https://nodejs.org/en/about/releases/
node-version: [ 22.x ] # See https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
Expand Down
2 changes: 1 addition & 1 deletion .platform.app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ hooks:
curl -fs https://get.symfony.com/cloud/configurator | bash
NODE_VERSION=18 symfony-build
NODE_VERSION=22 symfony-build
deploy: |
set -x -e
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Node.js (Build assets)

FROM node:16-alpine as node
FROM node:22-alpine AS node

WORKDIR /assets

Expand All @@ -11,11 +11,11 @@ RUN npm run build

# Composer

FROM composer:2 as composer
FROM composer:2 AS composer

# Application

FROM php:8.1-apache as app
FROM php:8.3-apache AS app

## Install PHP dependencies

Expand Down

0 comments on commit 1170aa1

Please sign in to comment.