From a1b1fa1d04967c72eb5e2b082e39927ff4cf72f8 Mon Sep 17 00:00:00 2001 From: David Edler Date: Thu, 9 Jan 2025 13:34:54 +0100 Subject: [PATCH] chore(deps) update demo server dependencies Signed-off-by: David Edler --- .github/workflows/coverage.yaml | 2 +- .github/workflows/pr.yaml | 4 ++-- Dockerfile | 4 ++-- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/coverage.yaml b/.github/workflows/coverage.yaml index b791a66322..7066d88745 100644 --- a/.github/workflows/coverage.yaml +++ b/.github/workflows/coverage.yaml @@ -54,7 +54,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Install Playwright Browser run: npx playwright install --with-deps chromium diff --git a/.github/workflows/pr.yaml b/.github/workflows/pr.yaml index fb591d7882..21f63f6664 100644 --- a/.github/workflows/pr.yaml +++ b/.github/workflows/pr.yaml @@ -111,7 +111,7 @@ jobs: - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Install Playwright Browsers run: npx playwright install --with-deps ${{ matrix.browser }} @@ -153,7 +153,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 20 + node-version: 22 - name: Download blob reports from GitHub Actions Artifacts uses: actions/download-artifact@v4 diff --git a/Dockerfile b/Dockerfile index 89d44ee1c8..1a1b7038ad 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Build js / css -FROM node:21 AS yarn-dependencies +FROM node:22 AS yarn-dependencies WORKDIR /srv COPY . . RUN yarn --network-concurrency 2 @@ -10,7 +10,7 @@ RUN mv entrypoint /srv/deploy/ RUN mv haproxy-demo.cfg /srv/deploy/ # Build the demo image -FROM ubuntu:jammy +FROM ubuntu:noble # Set up environment ENV LANG C.UTF-8