From a5600784a5282ff0e4413a00a35f2599a3bb5550 Mon Sep 17 00:00:00 2001 From: Maximilian Franzke Date: Thu, 22 Dec 2022 16:04:06 +0100 Subject: [PATCH 1/3] chore: using current node version in CI/CD as well --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 2b125cacf..7f876acb9 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -12,7 +12,7 @@ jobs: - name: Set up NodeJS uses: actions/setup-node@v2.1.4 with: - node-version: '>=14.20.1' + node-version: '<15' - name: Setup the project run: | From 01ddba9bb2007ab289a2b45bc94fe1eab24a1fdc Mon Sep 17 00:00:00 2001 From: Maximilian Franzke Date: Thu, 22 Dec 2022 16:20:22 +0100 Subject: [PATCH 2/3] refactor: pinning to major version even only to make any minor or patch updates obsolete --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 7f876acb9..9df6c67da 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -10,7 +10,7 @@ jobs: uses: actions/checkout@v2 - name: Set up NodeJS - uses: actions/setup-node@v2.1.4 + uses: actions/setup-node@v2 with: node-version: '<15' From c4aba13dd2184ff10716920462e366151ac7e17a Mon Sep 17 00:00:00 2001 From: Maximilian Franzke <787658+mfranzke@users.noreply.github.com> Date: Mon, 26 Dec 2022 13:47:19 +0100 Subject: [PATCH 3/3] refactor: hardening that declaration --- .github/workflows/continuous-integration.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/continuous-integration.yml b/.github/workflows/continuous-integration.yml index 9df6c67da..648d89c97 100644 --- a/.github/workflows/continuous-integration.yml +++ b/.github/workflows/continuous-integration.yml @@ -12,7 +12,7 @@ jobs: - name: Set up NodeJS uses: actions/setup-node@v2 with: - node-version: '<15' + node-version: '14' - name: Setup the project run: |