From dd69b242b4c1668a303b6df27f8ef7ac14c12a06 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Mar 2022 14:22:54 +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/continuous-integration-workflow.yml | 6 +++--- .github/workflows/operator-ui.yml | 6 +++--- .github/workflows/solidity.yml | 4 ++-- 3 files changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index ed77db7..3639054 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -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 with: path: /usr/local/share/.cache/yarn key: yarn-${{ env.CACHE_VERSION }}-${{ hashFiles('yarn.lock') }} @@ -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 with: path: /go/pkg/mod key: go-mod-${{ env.CACHE_VERSION }}-${{ hashFiles('go.sum') }} @@ -131,7 +131,7 @@ jobs: - name: Checkout the repo uses: actions/checkout@v2 - name: Yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: yarn-cache with: diff --git a/.github/workflows/operator-ui.yml b/.github/workflows/operator-ui.yml index c668b63..b9e3f27 100644 --- a/.github/workflows/operator-ui.yml +++ b/.github/workflows/operator-ui.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout the repo uses: actions/checkout@v2 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: yarn-cache with: @@ -40,7 +40,7 @@ jobs: - name: Checkout the repo uses: actions/checkout@v2 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: yarn-cache with: @@ -68,7 +68,7 @@ jobs: - name: Checkout the repo uses: actions/checkout@v2 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: yarn-cache with: diff --git a/.github/workflows/solidity.yml b/.github/workflows/solidity.yml index 9671362..44f986e 100644 --- a/.github/workflows/solidity.yml +++ b/.github/workflows/solidity.yml @@ -12,7 +12,7 @@ jobs: - name: Checkout the repo uses: actions/checkout@v2 - name: Yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: yarn-cache with: @@ -40,7 +40,7 @@ jobs: - name: Checkout the repo uses: actions/checkout@v2 - name: Yarn cache - uses: actions/cache@v2 + uses: actions/cache@v3 env: cache-name: yarn-cache with: