Skip to content

Commit 97bcfab

Browse files
Bump actions/cache from 2 to 3.0.1 (#281)
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](actions/cache@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] <[email protected]> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
1 parent a94eef5 commit 97bcfab

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

.github/workflows/programs-e2e.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ jobs:
4040
id: yarn-cache-dir-path
4141
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
4242
- name: Yarn Cache
43-
uses: actions/cache@v2
43+
uses: actions/cache@v3
4444
with:
4545
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
4646
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
@@ -87,7 +87,7 @@ jobs:
8787
# Install Solana
8888
- name: Cache Solana binaries
8989
id: solana-cache
90-
uses: actions/cache@v2
90+
uses: actions/cache@v3
9191
with:
9292
path: |
9393
~/.cache/solana
@@ -111,7 +111,7 @@ jobs:
111111
id: yarn-cache-dir-path
112112
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
113113
- name: Yarn Cache
114-
uses: actions/cache@v2
114+
uses: actions/cache@v3
115115
with:
116116
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
117117
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

.github/workflows/release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ jobs:
3535
id: yarn-cache-dir-path
3636
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
3737
- name: Yarn Cache
38-
uses: actions/cache@v2
38+
uses: actions/cache@v3
3939
with:
4040
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
4141
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
@@ -123,7 +123,7 @@ jobs:
123123
id: yarn-cache-dir-path
124124
run: echo "::set-output name=dir::$(yarn config get cacheFolder)"
125125
- name: Yarn Cache
126-
uses: actions/cache@v2
126+
uses: actions/cache@v3
127127
with:
128128
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
129129
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}

0 commit comments

Comments
 (0)