Skip to content

Commit

Permalink
chore(deps) update demo server dependencies (#1049)
Browse files Browse the repository at this point in the history
## Done

- update dependencies for demo server
  • Loading branch information
edlerd authored Jan 9, 2025
2 parents a451123 + a1b1fa1 commit c4e86e0
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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 }}
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -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
Expand All @@ -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
Expand Down

0 comments on commit c4e86e0

Please sign in to comment.