Skip to content

Commit

Permalink
build: update to node 20
Browse files Browse the repository at this point in the history
  • Loading branch information
adamdecaf committed Sep 14, 2023
1 parent addf4d7 commit 766a672
Show file tree
Hide file tree
Showing 5 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ jobs:
if: runner.os == 'Linux'
uses: actions/setup-node@v3
with:
node-version: '19'
node-version: '20'

- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/openshift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: runner.os == 'Linux'
uses: actions/setup-node@v3
with:
node-version: '19'
node-version: '20'

- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ jobs:
- name: Setup Node / NPM
uses: actions/setup-node@v3
with:
node-version: '19'
node-version: '20'

- name: Check out code into the Go module directory
uses: actions/checkout@v3
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/static.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
if: runner.os == 'Linux'
uses: actions/setup-node@v3
with:
node-version: '19'
node-version: '20'

- name: Check out code into the Go module directory
uses: actions/checkout@v2
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile-openshift
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
FROM quay.io/fedora/fedora:37-x86_64 as builder
FROM quay.io/fedora/fedora:39-x86_64 as builder
RUN yum install -y git golang make npm wget glibc
WORKDIR /opt/app-root/src/
COPY . .
RUN make build

FROM node:18-buster as frontend
FROM node:20-buster as frontend
COPY webui/ /watchman/
WORKDIR /watchman/
RUN npm install --legacy-peer-deps
RUN npm run build

FROM quay.io/fedora/fedora:37-x86_64
FROM quay.io/fedora/fedora:39-x86_64
RUN yum install -y glibc

ARG VERSION=unknown
Expand Down

0 comments on commit 766a672

Please sign in to comment.