diff options
author | LASER-Yi <[email protected]> | 2022-08-21 20:06:17 +0800 |
---|---|---|
committer | LASER-Yi <[email protected]> | 2022-08-21 20:06:17 +0800 |
commit | e3224c69ad32b8a298f196b8fcd9eacbf7e776c6 (patch) | |
tree | a97d19a5d27312c933ebb0f703f11b4b89c3cb05 | |
parent | bfd1af7c0cf0211abc49532bba22870856461d9d (diff) | |
download | bazarr-e3224c69ad32b8a298f196b8fcd9eacbf7e776c6.tar.gz bazarr-e3224c69ad32b8a298f196b8fcd9eacbf7e776c6.zip |
no log: Fix CI issues by always using LTS NodeJS version
-rw-r--r-- | .github/workflows/ci.yml | 2 | ||||
-rw-r--r-- | .github/workflows/release_beta_to_dev.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/release_dev_to_master.yaml | 2 | ||||
-rw-r--r-- | .github/workflows/test_bazarr_execution.yml | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0c36d3afb..51db01ef3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -37,7 +37,7 @@ jobs: - name: Setup NodeJS uses: actions/setup-node@v3 with: - node-version: "16" + node-version: "lts/*" - name: Install dependencies run: npm install diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index 2a415f3da..ff26ac0f4 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -38,7 +38,7 @@ jobs: - name: Setup NodeJS uses: actions/setup-node@v3 with: - node-version: "15.x" + node-version: "lts/*" - name: Install Global Tools run: npm install -g release-it auto-changelog diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml index 298bdbebf..f43e9a15a 100644 --- a/.github/workflows/release_dev_to_master.yaml +++ b/.github/workflows/release_dev_to_master.yaml @@ -40,7 +40,7 @@ jobs: - name: Setup NodeJS uses: actions/setup-node@v3 with: - node-version: "15.x" + node-version: "lts/*" - name: Install Global Tools run: npm install -g release-it auto-changelog diff --git a/.github/workflows/test_bazarr_execution.yml b/.github/workflows/test_bazarr_execution.yml index a5291c327..e12512f6f 100644 --- a/.github/workflows/test_bazarr_execution.yml +++ b/.github/workflows/test_bazarr_execution.yml @@ -24,7 +24,7 @@ jobs: - name: Setup NodeJS uses: actions/setup-node@v3 with: - node-version: "15.x" + node-version: "lts/*" - name: Install UI Dependencies run: npm install |