From 82b9b823c0bac839347eaa7037abec7c70dbc1d8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 14 Oct 2022 00:27:35 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.11 Bumps [actions/cache](https://github.com/actions/cache) from 2 to 3.0.11. - [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.11) --- 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..1a083a0 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.11 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.11 with: path: ./.yarn/cache key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f76c8a2..201bf32 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.11 with: path: ./.yarn/cache key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }}