diff --git a/.azure-pipelines.yml b/.azure-pipelines.yml index 307032e036..d5ddc00cac 100644 --- a/.azure-pipelines.yml +++ b/.azure-pipelines.yml @@ -16,8 +16,8 @@ jobs: vmImage: windows-2019 strategy: matrix: - node_14.x: - node_version: 14.x + node: + node_version: 16.x steps: - powershell: | $CI_BUILD_TAG = git describe --tags @@ -64,8 +64,8 @@ jobs: vmImage: macOS-11 strategy: matrix: - node_14.x: - node_version: 14.x + node: + node_version: 16.x steps: - script: CI_BUILD_TAG=`git describe --tags` && echo "##vso[task.setvariable variable=CI_BUILD_TAG]$CI_BUILD_TAG" condition: "and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))" @@ -128,8 +128,8 @@ jobs: vmImage: ubuntu-18.04 strategy: matrix: - node_14.x: - node_version: 14.x + node: + node_version: 16.x steps: - script: CI_BUILD_TAG=`git describe --tags` && echo "##vso[task.setvariable variable=CI_BUILD_TAG]$CI_BUILD_TAG" condition: "and(succeeded(), startsWith(variables['Build.SourceBranch'], 'refs/tags/'))" diff --git a/.github/workflows/check-docs.yml b/.github/workflows/check-docs.yml index f94a2fda5c..9c942690b0 100644 --- a/.github/workflows/check-docs.yml +++ b/.github/workflows/check-docs.yml @@ -9,7 +9,7 @@ jobs: if: ${{ contains(github.event.pull_request.labels.*.name, 'area/documentation') }} strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - name: Checkout Release from lens uses: actions/checkout@v2 diff --git a/.github/workflows/electronegativity.yml b/.github/workflows/electronegativity.yml index 059894530b..6e634082c4 100644 --- a/.github/workflows/electronegativity.yml +++ b/.github/workflows/electronegativity.yml @@ -14,12 +14,12 @@ jobs: - uses: actions/setup-node@v2 with: - node-version: "14" + node-version: "16" - uses: doyensec/electronegativity-action@v1.1 with: input: src/ - electron-version: "14.2.4" + electron-version: "15.5.7" severity: medium - name: Upload sarif diff --git a/.github/workflows/linter.yml b/.github/workflows/linter.yml index 18ec977859..ac7ac673ca 100644 --- a/.github/workflows/linter.yml +++ b/.github/workflows/linter.yml @@ -7,7 +7,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - name: Checkout Release from lens uses: actions/checkout@v2 diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 300843633f..2fa32efc65 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -15,7 +15,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - name: Set up Python 3.7 uses: actions/setup-python@v2 @@ -46,7 +46,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [16.x] needs: verify-docs steps: - name: Set up Python 3.7 diff --git a/.github/workflows/mkdocs-manual.yml b/.github/workflows/mkdocs-manual.yml index a0695d0e7d..cda83b86c3 100644 --- a/.github/workflows/mkdocs-manual.yml +++ b/.github/workflows/mkdocs-manual.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - name: Set up Python 3.7 uses: actions/setup-python@v2 diff --git a/.github/workflows/publish-master-npm.yml b/.github/workflows/publish-master-npm.yml index caccbe9d25..31f86ae6f0 100644 --- a/.github/workflows/publish-master-npm.yml +++ b/.github/workflows/publish-master-npm.yml @@ -14,7 +14,7 @@ jobs: ${{ github.event.pull_request.merged == true && contains(github.event.pull_request.labels.*.name, 'area/extension') }} strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - name: Checkout Release uses: actions/checkout@v2 diff --git a/.github/workflows/publish-release-npm.yml b/.github/workflows/publish-release-npm.yml index 0bfc06a106..79a06c000f 100644 --- a/.github/workflows/publish-release-npm.yml +++ b/.github/workflows/publish-release-npm.yml @@ -9,7 +9,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node-version: [14.x] + node-version: [16.x] steps: - name: Checkout Release uses: actions/checkout@v2 diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 44967d192c..a71fc42771 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -13,7 +13,7 @@ jobs: strategy: matrix: os: [ubuntu-18.04, macos-11, windows-2019] - node-version: [14.x] + node-version: [16.x] steps: - name: Checkout Release from lens uses: actions/checkout@v2