diff options
author | dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> | 2022-03-21 19:31:09 -0400 |
---|---|---|
committer | GitHub <[email protected]> | 2022-03-21 19:31:09 -0400 |
commit | dbdccfc7b8e67372123f22e760f5303e311b5ea5 (patch) | |
tree | e19bc4f67274644a019cb6e903bd2659097c0472 /.github | |
parent | 5245ecd38b8ba34ed27b9c2b47b299d49de1d179 (diff) | |
download | bazarr-dbdccfc7b8e67372123f22e760f5303e311b5ea5.tar.gz bazarr-dbdccfc7b8e67372123f22e760f5303e311b5ea5.zip |
no log: Bump actions/cache from 2 to 3 (#1774)
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.
- [Release notes](https://github.com/actions/cache/releases)
- [Commits](https://github.com/actions/cache/compare/v2...v3)
---
updated-dependencies:
- dependency-name: actions/cache
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>
Diffstat (limited to '.github')
-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 |
3 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7e8d90837..77326c659 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -28,7 +28,7 @@ jobs: fetch-depth: 1 - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: "${{ env.UI_DIRECTORY }}/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_beta_to_dev.yaml b/.github/workflows/release_beta_to_dev.yaml index d57fcc5bf..2a415f3da 100644 --- a/.github/workflows/release_beta_to_dev.yaml +++ b/.github/workflows/release_beta_to_dev.yaml @@ -29,7 +29,7 @@ jobs: git fetch --depth ${{ env.FETCH_DEPTH }} --tags - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: "${{ env.UI_DIRECTORY }}/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} diff --git a/.github/workflows/release_dev_to_master.yaml b/.github/workflows/release_dev_to_master.yaml index 28f4ee1e9..298bdbebf 100644 --- a/.github/workflows/release_dev_to_master.yaml +++ b/.github/workflows/release_dev_to_master.yaml @@ -31,7 +31,7 @@ jobs: run: git config --global user.name "github-actions" - name: Cache node_modules - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: "${{ env.UI_DIRECTORY }}/node_modules" key: ${{ runner.os }}-modules-${{ hashFiles('**/package-lock.json') }} |