diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-03-15 09:33:46 +0800 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-15 09:33:46 +0800 |
commit | 6fc4f135ba54e57b89a073a1c6506ab42ad46e4f (patch) | |
tree | 57956921da11b408f120235b42cde0bf423ae363 | |
parent | 33a9e512acafe0419d553660c20659d007a23b85 (diff) | |
download | bazarr-6fc4f135ba54e57b89a073a1c6506ab42ad46e4f.tar.gz bazarr-6fc4f135ba54e57b89a073a1c6506ab42ad46e4f.zip |
no log: Bump actions/setup-node from 2 to 3 (#1764)v1.0.4-beta.7
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 2 to 3.
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](https://github.com/actions/setup-node/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/setup-node
dependency-type: direct:production
update-type: version-update:semver-major
...
Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
-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 b9f019074..721ec2b51 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -35,7 +35,7 @@ jobs: restore-keys: ${{ runner.os }}-modules- - name: Setup NodeJS - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: "15.x" diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index 8586106d7..f54ae483c 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -36,7 +36,7 @@ jobs: restore-keys: ${{ runner.os }}-modules- - name: Setup NodeJS - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: "15.x" diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml index 2d998f3c0..d69a73d9c 100644 --- a/.github/workflows/release_dev_to_master.yaml +++ b/.github/workflows/release_dev_to_master.yaml @@ -38,7 +38,7 @@ jobs: restore-keys: ${{ runner.os }}-modules- - name: Setup NodeJS - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: "15.x" diff --git a/.github/workflows/test_bazarr_execution.yml b/.github/workflows/test_bazarr_execution.yml index 9ee2cec7b..f4da89ae0 100644 --- a/.github/workflows/test_bazarr_execution.yml +++ b/.github/workflows/test_bazarr_execution.yml @@ -22,7 +22,7 @@ jobs: ref: development - name: Setup NodeJS - uses: actions/setup-node@v2 + uses: actions/setup-node@v3 with: node-version: "15.x" |