From fefaecd4af3c7fe79264155498f9f0081e5352fd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 28 Dec 2022 01:01:49 +0000 Subject: [PATCH] Bump actions/cache from 2.1.4 to 3.2.2 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.4 to 3.2.2. - [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.2.2) --- 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..4cd23229ab 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.2.2 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.2.2 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.2.2 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.2.2 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..ffeeefd5d5 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.2.2 with: path: | ~/downloads