From 49d9e40c7e4b5d1b3da027ce9e7861dda5e5f41b Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Mar 2022 00:25:06 +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.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..9b93d7d 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.0.1 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.0.1 with: path: ./.yarn/cache key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f76c8a2..8a71102 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.0.1 with: path: ./.yarn/cache key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }}