From 92afe960916d0670f7ad137c9c4b396125f55fc4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 00:28:08 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/programs.yml | 4 ++-- .github/workflows/release.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/programs.yml b/.github/workflows/programs.yml index 46d37c9..d4f3108 100644 --- a/.github/workflows/programs.yml +++ b/.github/workflows/programs.yml @@ -45,7 +45,7 @@ jobs: # Install Solana - name: Cache Solana binaries - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.cache/solana key: ${{ runner.os }}-${{ env.SOLANA_VERSION }} @@ -59,7 +59,7 @@ jobs: solana-keygen new -o "$HOME/.config/solana/id.json" --no-passphrase --silent - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ./.yarn/cache key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f76c8a2..58a99f6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -38,7 +38,7 @@ jobs: always-auth: true node-version: 14.x - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ./.yarn/cache key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }}