From 2c290acfb55cfe0c62ad324a559b6ea2150db584 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 12 Jan 2026 07:42:29 +0000 Subject: [PATCH] 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/davinci-integration-tests.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/davinci-integration-tests.yml b/.github/workflows/davinci-integration-tests.yml index 9eb767d5ff..9b1b3373c0 100644 --- a/.github/workflows/davinci-integration-tests.yml +++ b/.github/workflows/davinci-integration-tests.yml @@ -39,7 +39,7 @@ jobs: run: yarn build:package - name: Cache built packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "packages/**/dist-package" key: ${{ runner.os }}-pkgs-${{ github.run_id }} }} @@ -72,7 +72,7 @@ jobs: - uses: ./.github/actions/yarn-install - name: Get cached packages - uses: actions/cache@v4 + uses: actions/cache@v5 with: path: "packages/**/dist-package" key: ${{ runner.os }}-pkgs-${{ github.run_id }} }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 813d0754eb..b91806c219 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -42,7 +42,7 @@ jobs: run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Check yarn cache - uses: actions/cache@v4 + uses: actions/cache@v5 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}