Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade to node 22 from 20 for build life maintenance #657

Merged
merged 1 commit into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:

strategy:
matrix:
node-version: [ "20.12.0" ]
node-version: [ "22.12.0" ]
go-version: [ "1.23" ]
db-host:
- 127.0.0.1
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [ "20.12.0" ]
node-version: [ "22.12.0" ]

steps:
- name: Set up Node.js ${{ matrix.node-version }}
Expand Down
4 changes: 2 additions & 2 deletions build/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
############################
# STEP 1 build the ui
############################
FROM node:20.12 as builderNode
FROM node:22.12 as builderNode

RUN mkdir /webapp
COPY ./ui/ /webapp/ui/
Expand All @@ -14,7 +14,7 @@ RUN npm run build
############################
# STEP 2 build executable binary
############################
FROM golang:1.22-alpine as builderGo
FROM golang:1.23-alpine as builderGo
ARG BUILD_VERSION
# Install git + SSL ca certificates.
# Git is required for fetching the dependencies.
Expand Down
14 changes: 8 additions & 6 deletions ui/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading