Skip to content
Open
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/continuous-integration-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Install Postgres for CLI tools
run: wget --quiet -O - https://packages.cloud.google.com/apt/doc/apt-key.gpg | sudo apt-key add - && wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | sudo apt-key add - && echo "deb http://apt.postgresql.org/pub/repos/apt/ `lsb_release -cs`-pgdg main" |sudo tee /etc/apt/sources.list.d/pgdg.list && sudo apt update && sudo apt install -y postgresql-client-13
- name: Cache Yarn dependencies
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: /usr/local/share/.cache/yarn
key: yarn-${{ env.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }}
Expand All @@ -55,7 +55,7 @@ jobs:
- name: Install Yarn dependencies
run: make yarndep
- name: Cache Go vendor packages
uses: actions/cache@v2
uses: actions/cache@v3.0.11
with:
path: /go/pkg/mod
key: go-mod-${{ env.CACHE_VERSION }}-${{ hashFiles('go.sum') }}
Expand Down Expand Up @@ -131,7 +131,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Yarn cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: yarn-cache
with:
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/operator-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: yarn-cache
with:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: yarn-cache
with:
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Cache dependencies
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: yarn-cache
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/solidity.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Yarn cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: yarn-cache
with:
Expand Down Expand Up @@ -40,7 +40,7 @@ jobs:
- name: Checkout the repo
uses: actions/checkout@v2
- name: Yarn cache
uses: actions/cache@v2
uses: actions/cache@v3.0.11
env:
cache-name: yarn-cache
with:
Expand Down