From 4ecfef0f5fc5c7d92c0c8330cc846c1749029b1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 15 Mar 2026 21:08:32 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 4 to 5 Bumps [actions/cache](https://github.com/actions/cache) from 4 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/v4...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/ci.yml | 4 ++-- .github/workflows/release-runtime.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 79315db..db50999 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -46,12 +46,12 @@ jobs: mkdir -p "${RUNNER_TEMP}/lambda-runtime-monorepo/cache/downloads" mkdir -p "${RUNNER_TEMP}/lambda-runtime-monorepo/cache/trivy" - name: Cache runtime downloads - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.DOWNLOAD_CACHE_DIR }} key: downloads-${{ runner.os }}-${{ matrix.runtime }}-${{ hashFiles(format('runtimes/{0}/runtime.json', matrix.runtime), format('runtimes/{0}/checksums/**', matrix.runtime)) }} - name: Cache Trivy database - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.TRIVY_CACHE_DIR }} key: trivy-${{ runner.os }}-${{ hashFiles('.github/workflows/ci.yml', '.github/workflows/release-runtime.yml') }} diff --git a/.github/workflows/release-runtime.yml b/.github/workflows/release-runtime.yml index 069f166..f6ec181 100644 --- a/.github/workflows/release-runtime.yml +++ b/.github/workflows/release-runtime.yml @@ -79,12 +79,12 @@ jobs: mkdir -p "${RUNNER_TEMP}/lambda-runtime-monorepo/cache/downloads" mkdir -p "${RUNNER_TEMP}/lambda-runtime-monorepo/cache/trivy" - name: Cache runtime downloads - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.DOWNLOAD_CACHE_DIR }} key: downloads-${{ runner.os }}-${{ matrix.runtime }}-${{ hashFiles(format('runtimes/{0}/runtime.json', matrix.runtime), format('runtimes/{0}/checksums/**', matrix.runtime)) }} - name: Cache Trivy database - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: ${{ env.TRIVY_CACHE_DIR }} key: trivy-${{ runner.os }}-${{ hashFiles('.github/workflows/ci.yml', '.github/workflows/release-runtime.yml') }}