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

Commit 7609326

Browse files
authored
Merge pull request #353 from IBM/bump-node
feat: bump to nodejs 18
2 parents 7334de3 + a1a2e20 commit 7609326

File tree

6 files changed

+33
-11
lines changed

6 files changed

+33
-11
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: 7 additions & 7 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
@@ -35,7 +35,7 @@
3535
"extends": "react-app"
3636
},
3737
"engines": {
38-
"node": "^16.0.0"
38+
"node": "^18.0.0"
3939
},
4040
"browserslist": {
4141
"production": [

0 commit comments

Comments
 (0)