From 2e9fad25bc395802fb204a169a6a4d04c0e4e7ed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Mar 2022 14:23:00 +0000 Subject: [PATCH] Bump actions/cache from 2 to 3.0.1 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](https://github.com/actions/cache/compare/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] --- .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..ab8c315 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.0.1 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.0.1 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.0.1 env: cache-name: yarn-cache with: diff --git a/.github/workflows/operator-ui.yml b/.github/workflows/operator-ui.yml index c668b63..286b547 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.0.1 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.0.1 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.0.1 env: cache-name: yarn-cache with: diff --git a/.github/workflows/solidity.yml b/.github/workflows/solidity.yml index 9671362..9e454a1 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.0.1 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.0.1 env: cache-name: yarn-cache with: