Skip to content

Commit 91bdacf

Browse files
Bump actions/cache from 2 to 3 (#13955)
Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@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>
1 parent 98f7326 commit 91bdacf

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/ci-app_cloud_e2e_test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -75,7 +75,7 @@ jobs:
7575
# TODO: Enable cache
7676
# - name: Cache virtualenv
7777
# id: cache-venv
78-
# uses: actions/cache@v2
78+
# uses: actions/cache@v3
7979
# with:
8080
# path: ./.venv/
8181
# key: ${{ runner.os }}-pip-${{ matrix.app_name }}-${{ hashFiles('requirements/app/base.txt', 'requirements/app/*.txt', 'src/lightning_app/__version__.py') }}
@@ -90,7 +90,7 @@ jobs:
9090

9191
- name: Cache Playwright dependencies
9292
id: playwright-cache
93-
uses: actions/cache@v2
93+
uses: actions/cache@v3
9494
with:
9595
path: ~/.cache/ms-playwright
9696
key: ${{ runner.os }}-playwright-${{ matrix.app_name }}-${{ hashFiles('requirements/app/base.txt', 'requirements/app/*.txt', 'src/lightning_app/__version__.py') }}

.github/workflows/docs-deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
# Note: This uses an internal pip API and may not always work
3232
# https://github.com/actions/cache/blob/master/examples.md#multiple-oss-in-a-workflow
3333
- name: Cache pip
34-
uses: actions/cache@v2
34+
uses: actions/cache@v3
3535
with:
3636
path: ~/.cache/pip
3737
key: ${{ runner.os }}-deploy-docs-pip-${{ hashFiles('requirements/app/*.txt') }}

0 commit comments

Comments
 (0)