From 5519f9460f7e4d17bd28d1ef7c8d5442272fc9e8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 13 Mar 2026 10:13:38 +0000 Subject: [PATCH] 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](https://github.com/actions/cache/compare/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] --- .github/workflows/apigee-release-pipeline.yml | 2 +- .github/workflows/continous-integration-workflow.yaml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/apigee-release-pipeline.yml b/.github/workflows/apigee-release-pipeline.yml index e62a17e3..c0009e43 100644 --- a/.github/workflows/apigee-release-pipeline.yml +++ b/.github/workflows/apigee-release-pipeline.yml @@ -102,7 +102,7 @@ jobs: run: pip install poetry - name: Cache poetry packages - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-build-cache-poetry-packages-${{ hashFiles('**/poetry.lock') }} diff --git a/.github/workflows/continous-integration-workflow.yaml b/.github/workflows/continous-integration-workflow.yaml index ead87ab5..055c6cb5 100644 --- a/.github/workflows/continous-integration-workflow.yaml +++ b/.github/workflows/continous-integration-workflow.yaml @@ -32,13 +32,13 @@ jobs: run: pip install poetry - name: Cache poetry packages - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.cache/pypoetry key: ${{ runner.os }}-build-cache-poetry-packages-${{ hashFiles('**/poetry.lock') }} - name: Cache node modules - uses: actions/cache@v3 + uses: actions/cache@v5 with: path: ~/.npm key: ${{ runner.os }}-build-cache-npm-packages-${{ hashFiles('**/package-lock.json') }}