From ac172979b79e989c1374d860265e80c750fd4e33 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 31 Mar 2022 01:12:09 +0000 Subject: [PATCH] Bump actions/cache from 2.1.4 to 3.0.1 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 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.1.4...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/CI.yml | 8 ++++---- .github/workflows/integration_tests.yml | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CI.yml b/.github/workflows/CI.yml index cbf9fd57db..91c3eaa95f 100644 --- a/.github/workflows/CI.yml +++ b/.github/workflows/CI.yml @@ -298,7 +298,7 @@ jobs: env-file: .ci_env # cache go modules - - uses: actions/cache@v2.1.4 + - uses: actions/cache@v3.0.1 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} @@ -401,7 +401,7 @@ jobs: node-version: 12.x - name: Checkout Code uses: actions/checkout@v2 - - uses: actions/cache@v2.1.4 + - uses: actions/cache@v3.0.1 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -447,7 +447,7 @@ jobs: uses: actions/checkout@v2 # cache go modules - - uses: actions/cache@v2.1.4 + - uses: actions/cache@v3.0.1 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-cli-${{ hashFiles('cli/go.sum') }} @@ -501,7 +501,7 @@ jobs: - name: Checkout Code uses: actions/checkout@v2 # cache go modules - - uses: actions/cache@v2.1.4 + - uses: actions/cache@v3.0.1 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-cli-${{ hashFiles('cli/go.sum') }} diff --git a/.github/workflows/integration_tests.yml b/.github/workflows/integration_tests.yml index ebd805162e..4418e697a8 100644 --- a/.github/workflows/integration_tests.yml +++ b/.github/workflows/integration_tests.yml @@ -85,7 +85,7 @@ jobs: run: mkdir ~/downloads - name: Cache downloads paths - uses: actions/cache@v2.1.4 + uses: actions/cache@v3.0.1 with: path: | ~/downloads