diff options
author | morpheus65535 <[email protected]> | 2022-08-21 08:23:04 -0400 |
---|---|---|
committer | morpheus65535 <[email protected]> | 2022-08-21 08:23:04 -0400 |
commit | 8387a57148871ac9a12d7ae333d5358187138003 (patch) | |
tree | 7da151843f786fd9d203c6b18084826050bd2431 | |
parent | 180a40e027a8a5e4e77d3ce4c17ffe37a9f3050f (diff) | |
parent | e3224c69ad32b8a298f196b8fcd9eacbf7e776c6 (diff) | |
download | bazarr-1.1.1-beta.16.tar.gz bazarr-1.1.1-beta.16.zip |
Merge remote-tracking branch 'origin/development' into developmentv1.1.1-beta.16
-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 |