Skip to content
This repository was archived by the owner on Feb 15, 2023. It is now read-only.

Commit 54918f7

Browse files
committed
feat: bump to nodejs 18
1 parent c52bf45 commit 54918f7

File tree

6 files changed

+39
-17
lines changed

6 files changed

+39
-17
lines changed

.github/workflows/nodejs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99

1010
strategy:
1111
matrix:
12-
node-version: [16.x]
12+
node-version: [16.x, 18.x]
1313

1414
steps:
1515
- uses: actions/checkout@v2

.github/workflows/stale.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Mark stale issues and pull requests
2+
3+
on:
4+
schedule:
5+
- cron: "0 0 * * *"
6+
7+
jobs:
8+
stale:
9+
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/stale@v1
14+
with:
15+
repo-token: ${{ secrets.GITHUB_TOKEN }}
16+
stale-issue-message: ':wave: Hi! This issue has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
17+
stale-pr-message: ':wave: Hi! This pull request has been marked stale due to inactivity. If no further activity occurs, it will automatically be closed.'
18+
stale-issue-label: 'stale'
19+
exempt-issue-label: 'keep-open'
20+
stale-pr-label: 'stale'
21+
days-before-stale: 30
22+
days-before-close: 7

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/nodejs-16-minimal:1 AS base
1+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1 AS base
22

33
USER 1001
44

Dockerfile-tools

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM registry.access.redhat.com/ubi8/nodejs-16-minimal:1
1+
FROM registry.access.redhat.com/ubi8/nodejs-18-minimal:1
22

33
ADD . /app
44

package-lock.json

Lines changed: 13 additions & 13 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
"extends": "react-app"
4242
},
4343
"engines": {
44-
"node": "^16.0.0"
44+
"node": "^18.0.0"
4545
},
4646
"browserslist": {
4747
"production": [

0 commit comments

Comments
 (0)