Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x

- name: Check out code repository source code
uses: actions/checkout@v2
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v1
with:
node-version: 14.x
node-version: 18.x
- name: Check out repo
uses: actions/checkout@v2
with:
Expand Down
1 change: 1 addition & 0 deletions .node-version
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
18
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:14-buster-slim
FROM node:18-buster-slim

ENV APP_DIR=/opt/jupiterone/starbase
WORKDIR ${APP_DIR}
Expand Down
2 changes: 1 addition & 1 deletion dist.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Dockerfile for distributed base image without any user configuration present, see README
FROM node:14-buster-slim
FROM node:18-buster-slim

ENV APP_DIR=/opt/jupiterone/starbase
WORKDIR ${APP_DIR}
Expand Down
19 changes: 8 additions & 11 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
"access": "public"
},
"engines": {
"node": "14.x"
"node": "18.x"
},
"bin": {
"starbase": "./bin/starbase"
Expand All @@ -36,24 +36,21 @@
"postversion": "cp package.json ./dist/package.json"
},
"dependencies": {
"@jupiterone/integration-sdk-cli": "^8.30.1",
"@jupiterone/integration-sdk-core": "^8.30.1",
"@jupiterone/integration-sdk-cli": "^9.5.0",
"@jupiterone/integration-sdk-core": "^9.5.0",
"ajv": "^8.9.0",
"js-yaml": "^4.1.0",
"lodash.snakecase": "^4.1.1",
"simple-git": "^3.3.0",
"ts-node": "^10.4.0",
"typescript": "^4.5.5"
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"devDependencies": {
"@jupiterone/integration-sdk-dev-tools": "^8.30.1",
"@jupiterone/integration-sdk-dev-tools": "^9.5.0",
"@types/js-yaml": "^4.0.5",
"@types/lodash.snakecase": "^4.1.6",
"auto": "^10.36.5"
},
"volta": {
"node": "14.19.0",
"yarn": "1.22.17"
"auto": "^10.36.5",
"ts-jest": "^29.1.0"
},
"auto": {
"plugins": [
Expand Down
Loading