Skip to content
This repository has been archived by the owner on Jun 6, 2024. It is now read-only.

Fix security #5774

Draft
wants to merge 8 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .github/workflows/continuous-integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [10]
node: [14]
os: [ubuntu-18.04, ubuntu-latest]

steps:
Expand All @@ -115,7 +115,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [10]
node: [14]
os: [ubuntu-latest]

steps:
Expand Down Expand Up @@ -145,7 +145,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [8, 10]
node: [14]
os: [ubuntu-18.04, ubuntu-latest]

steps:
Expand All @@ -168,7 +168,7 @@ jobs:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [10]
node: [14]
os: [ubuntu-18.04, ubuntu-latest]

steps:
Expand Down
4 changes: 2 additions & 2 deletions contrib/submit-job-v2/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -49,8 +49,8 @@
"tslint": "^5.20.1",
"tslint-react": "^3.6.0",
"typescript": "^3.3.3333",
"webpack": "^4.29.6",
"webpack": "^4.37.0",
"webpack-cli": "^3.2.3",
"webpack-dev-server": "^3.2.1"
"webpack-dev-server": "^4.9.0"
}
}
1,867 changes: 1,103 additions & 764 deletions contrib/submit-job-v2/yarn.lock

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/alert-manager/build/alert-handler.common.dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

FROM node:dubnium
FROM node:fermium

WORKDIR /usr/src/app

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

FROM node:dubnium
FROM node:fermium

WORKDIR /usr/src/app

Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.

FROM node:carbon
FROM node:fermium

WORKDIR /database-controller

Expand Down
2 changes: 1 addition & 1 deletion src/database-controller/src/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
"main": "index.js",
"license": "MIT",
"dependencies": {
"@kubernetes/client-node": "0.11.2",
"@kubernetes/client-node": "^0.16.3",
"async-lock": "^1.2.4",
"body-parser": "^1.19.0",
"compression": "^1.7.4",
Expand Down
Loading