From 64bf29a05f5cfac29b0f6d885a562d9be0b17f03 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Mar 2022 23:54:29 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.1. - [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/v2...v3.0.1) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/programs-e2e.yml | 6 +++--- .github/workflows/release.yml | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/programs-e2e.yml b/.github/workflows/programs-e2e.yml index d514eb7..1ead61f 100644 --- a/.github/workflows/programs-e2e.yml +++ b/.github/workflows/programs-e2e.yml @@ -35,7 +35,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} @@ -80,7 +80,7 @@ jobs: # Install Solana - name: Cache Solana binaries id: solana-cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: | ~/.cache/solana @@ -106,7 +106,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index efef634..7e2f202 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -35,7 +35,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} @@ -117,7 +117,7 @@ jobs: id: yarn-cache-dir-path run: echo "::set-output name=dir::$(yarn config get cacheFolder)" - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3.0.1 with: path: ${{ steps.yarn-cache-dir-path.outputs.dir }} key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}