Skip to content

Commit

Permalink
Use node 16, node 12 is EOL
Browse files Browse the repository at this point in the history
  • Loading branch information
abhidg committed Oct 18, 2022
1 parent 8b23708 commit 1e49a76
Show file tree
Hide file tree
Showing 8 changed files with 8 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/curator-api-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "16.x"
- name: Build and test
run: |
npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/curator-ui-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "16.x"
- name: Build and test
run: |
git config --global url."https://github.com/".insteadOf git@github.com:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/data-service-node.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "16.x"
- name: Build and test
run: |
npm ci
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-dev-curator-db-schema.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "16.x"

- name: Migrate dev database
env:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/update-prod-curator-db-schema.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: "12.x"
node-version: "16.x"

- name: Migrate prod database
env:
Expand Down
2 changes: 1 addition & 1 deletion data-serving/data-service/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,6 @@
]
},
"engines": {
"node": "14.17.1"
"node": "16.18.0"
}
}
2 changes: 1 addition & 1 deletion verification/curator-service/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,6 @@
]
},
"engines": {
"node": "16.14.2"
"node": "16.18.0"
}
}
2 changes: 1 addition & 1 deletion verification/curator-service/ui/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,6 @@
]
},
"engines": {
"node": "14.17.1"
"node": "16.18.1"
}
}

0 comments on commit 1e49a76

Please sign in to comment.