From 0f844d8e7ddc7eb58fe02bbcd3a9f56c67862d3c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 22 Mar 2022 07:20:40 +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-e2e.yml | 6 +++--- .github/workflows/release.yml | 2 +- .github/workflows/site.yml | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/programs-e2e.yml b/.github/workflows/programs-e2e.yml index a7a7405..ff4c5bf 100644 --- a/.github/workflows/programs-e2e.yml +++ b/.github/workflows/programs-e2e.yml @@ -38,7 +38,7 @@ jobs: always-auth: true node-version: "16" - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ./.yarn key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }} @@ -70,7 +70,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 }} @@ -99,7 +99,7 @@ jobs: run: nix shell .#ci --command anchor build - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ./.yarn key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }} diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 6de6071..99947bf 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -37,7 +37,7 @@ jobs: always-auth: true node-version: 14.x - name: Yarn Cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ./.yarn key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }} diff --git a/.github/workflows/site.yml b/.github/workflows/site.yml index 516882f..e1f68f7 100644 --- a/.github/workflows/site.yml +++ b/.github/workflows/site.yml @@ -24,7 +24,7 @@ jobs: authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} - name: Cache Node modules - uses: actions/cache@v2 + uses: actions/cache@v3 id: cache-node-modules with: path: ./node_modules