From 78b76cc096ee6330bba4e8968e7327f2bbbf8567 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 6 Feb 2024 11:57:07 +0000 Subject: [PATCH] Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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...v4) --- updated-dependencies: - dependency-name: actions/cache 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 51b00b81f92..97ac13d0813 100644 --- a/.github/workflows/davinci-integration-tests.yml +++ b/.github/workflows/davinci-integration-tests.yml @@ -62,7 +62,7 @@ jobs: run: yarn build:package - name: Cache built packages - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: "packages/**/dist-package" key: ${{ runner.os }}-pkgs-${{ github.run_id }} }} @@ -118,7 +118,7 @@ jobs: - uses: toptal/davinci-github-actions/yarn-install@v12.8.0 - name: Get cached packages - uses: actions/cache@v3 + uses: actions/cache@v4 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 0e934587983..1fe22b96bcf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -72,7 +72,7 @@ jobs: run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT - name: Check yarn cache - uses: actions/cache@v3 + uses: actions/cache@v4 id: yarn-cache with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }}