Skip to content

Commit 5519f94

Browse files
Bump actions/cache from 3 to 5
Bumps [actions/cache](https://github.com/actions/cache) from 3 to 5. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](actions/cache@v3...v5) --- updated-dependencies: - dependency-name: actions/cache dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
1 parent a910a16 commit 5519f94

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

.github/workflows/apigee-release-pipeline.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ jobs:
102102
run: pip install poetry
103103

104104
- name: Cache poetry packages
105-
uses: actions/cache@v3
105+
uses: actions/cache@v5
106106
with:
107107
path: ~/.cache/pypoetry
108108
key: ${{ runner.os }}-build-cache-poetry-packages-${{ hashFiles('**/poetry.lock') }}

.github/workflows/continous-integration-workflow.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,13 +32,13 @@ jobs:
3232
run: pip install poetry
3333

3434
- name: Cache poetry packages
35-
uses: actions/cache@v3
35+
uses: actions/cache@v5
3636
with:
3737
path: ~/.cache/pypoetry
3838
key: ${{ runner.os }}-build-cache-poetry-packages-${{ hashFiles('**/poetry.lock') }}
3939

4040
- name: Cache node modules
41-
uses: actions/cache@v3
41+
uses: actions/cache@v5
4242
with:
4343
path: ~/.npm
4444
key: ${{ runner.os }}-build-cache-npm-packages-${{ hashFiles('**/package-lock.json') }}

0 commit comments

Comments
 (0)