From 99d2f8e0138c0120887c827c8a7983a1de0c63a1 Mon Sep 17 00:00:00 2001 From: Mathias Boeck Date: Mon, 16 May 2022 17:05:58 +0200 Subject: [PATCH] ci: set node version in workflows to fit Angular CLI requires --- .github/workflows/package-main-release.yml | 8 ++++---- .github/workflows/package-pre-release.yml | 8 ++++---- .github/workflows/test-build.yml | 2 +- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/package-main-release.yml b/.github/workflows/package-main-release.yml index 92cfee67e..e6b2c3fba 100644 --- a/.github/workflows/package-main-release.yml +++ b/.github/workflows/package-main-release.yml @@ -68,7 +68,7 @@ jobs: git checkout ${{ needs.checkTitelTag.outputs.VERSION_TAG }} - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 - run: rm -f .npmrc - uses: ./.github/actions/check-tag-on-npm with: @@ -88,7 +88,7 @@ jobs: git checkout ${{ needs.checkTitelTag.outputs.VERSION_TAG }} - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 - name: build run: | npm ci @@ -146,7 +146,7 @@ jobs: path: dist - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 registry-url: https://npm.pkg.github.com/ scope: "@dlr-eoc" - run: npm ci @@ -179,7 +179,7 @@ jobs: path: dist - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 registry-url: https://registry.npmjs.org/ scope: "@dlr-eoc" - run: npm ci diff --git a/.github/workflows/package-pre-release.yml b/.github/workflows/package-pre-release.yml index 62fbd1063..0c3cb2417 100644 --- a/.github/workflows/package-pre-release.yml +++ b/.github/workflows/package-pre-release.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 - run: rm -f .npmrc - uses: ./.github/actions/check-tag-on-npm with: @@ -41,7 +41,7 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 - uses: ./.github/actions/build-test - name: Archive dist artifacts uses: actions/upload-artifact@v2 @@ -61,7 +61,7 @@ jobs: path: dist - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 registry-url: https://npm.pkg.github.com/ scope: "@dlr-eoc" - run: npm ci @@ -94,7 +94,7 @@ jobs: path: dist - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 registry-url: https://registry.npmjs.org/ scope: "@dlr-eoc" - run: npm ci diff --git a/.github/workflows/test-build.yml b/.github/workflows/test-build.yml index b3cb41cc0..7b40425c8 100644 --- a/.github/workflows/test-build.yml +++ b/.github/workflows/test-build.yml @@ -23,6 +23,6 @@ jobs: - uses: actions/checkout@v2 - uses: actions/setup-node@v2 with: - node-version: 15 + node-version: 16 - uses: ./.github/actions/test - uses: ./.github/actions/build