Skip to content

Commit 595bf89

Browse files
committed
updated to node-18
1 parent 408d70d commit 595bf89

File tree

9 files changed

+13
-12
lines changed

9 files changed

+13
-12
lines changed

.github/workflows/build_project.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
- uses: actions/checkout@v1
1616
- uses: actions/setup-node@v1
1717
with:
18-
node-version: 10
18+
node-version: 18
1919
- run: |
20-
sudo bash -c "mkdir /captain && chown -R `whoami` /captain"
21-
npm ci
22-
npm run build
23-
npm run test
20+
sudo bash -c "mkdir /captain && chown -R `whoami` /captain"
21+
npm ci
22+
npm run build
23+
npm run test

.github/workflows/format_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
- uses: actions/checkout@v1
1616
- uses: actions/setup-node@v1
1717
with:
18-
node-version: 10
18+
node-version: 18
1919
- run: npm ci && npm run formatter

.github/workflows/lint_project.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,5 +15,5 @@ jobs:
1515
- uses: actions/checkout@v1
1616
- uses: actions/setup-node@v1
1717
with:
18-
node-version: 10
18+
node-version: 18
1919
- run: npm ci && npm run lint

.github/workflows/publish_edge.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-node@v1
1414
with:
15-
node-version: 14
15+
node-version: 18
1616
- run: |
1717
sudo bash -c "mkdir /captain && chown -R `whoami` /captain"
1818
npm ci

.github/workflows/publish_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
- uses: actions/checkout@v1
1313
- uses: actions/setup-node@v1
1414
with:
15-
node-version: 14
15+
node-version: 18
1616
- run: |
1717
sudo bash -c "mkdir /captain && chown -R `whoami` /captain"
1818
npm ci

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
- Improved: Enabling gzip for the dashboard for a faster load
66
- Improved: Allowing custom captain domain for webhooks [PR-1330](https://github.com/caprover/caprover/pull/1330)
77
- Improved: Update Netdata [PR-1432](https://github.com/caprover/caprover/pull/1432)
8+
- Improved: Adding support for overwriting app defaults NGINX config [PR-1377](https://github.com/caprover/caprover/pull/1377)
89
- Fixed: Allowing dots to be present in repo names [PR-1553](https://github.com/caprover/caprover/pull/1553)
910

1011

dockerfile-captain.debug

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14
1+
FROM node:18
22
RUN apt-get update && apt-get full-upgrade -yqq && apt-get install build-essential cmake -yqq
33

44
RUN apt-get -y install netcat socat

dockerfile-captain.edge

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14
1+
FROM node:18
22
RUN apt-get update && apt-get full-upgrade -yqq && apt-get install build-essential cmake -yqq
33

44
RUN mkdir -p /usr/src/app

dockerfile-captain.release

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:14
1+
FROM node:18
22
RUN apt-get update && apt-get full-upgrade -yqq && apt-get install build-essential cmake -yqq
33

44
RUN mkdir -p /usr/src/app

0 commit comments

Comments
 (0)