Skip to content

Commit

Permalink
ci(actions): update node and php version
Browse files Browse the repository at this point in the history
  • Loading branch information
joelbeckmann committed Jan 17, 2025
1 parent b8d173a commit 9d86e6f
Show file tree
Hide file tree
Showing 5 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
php-version: [ '8.2' ]
php-version: [ '8.3' ]

steps:
- name: Check out code
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manifests/php/dev.Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/manifests/php/prod.Dockerfile
Original file line number Diff line number Diff line change
@@ -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 \
Expand All @@ -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

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 9d86e6f

Please sign in to comment.