Skip to content

Commit

Permalink
Upgrade to node 22 from 20 for build life maintenance (#657)
Browse files Browse the repository at this point in the history
  • Loading branch information
StevenWeathers authored Jan 7, 2025
1 parent 8f066b1 commit bcb1750
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 10 deletions.
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.

0 comments on commit bcb1750

Please sign in to comment.