Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions .github/workflows/programs-e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
always-auth: true
node-version: "16"
- name: Yarn Cache
uses: actions/cache@v2
uses: actions/cache@v3.0.1
with:
path: ./.yarn
key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }}
Expand Down Expand Up @@ -70,7 +70,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 }}
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
run: nix shell .#ci --command anchor build

- name: Yarn Cache
uses: actions/cache@v2
uses: actions/cache@v3.0.1
with:
path: ./.yarn
key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,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
key: ${{ runner.os }}-${{ hashFiles('./.yarn/**/*.js') }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/site.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }}

- name: Cache Node modules
uses: actions/cache@v2
uses: actions/cache@v3.0.1
id: cache-node-modules
with:
path: ./node_modules
Expand Down