From e61afc69caae2d1a0afda3204b942cfaad29538f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jan 2024 19:54:11 +0000 Subject: [PATCH] chore(deps): bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [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/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/cover.yml | 4 ++-- .github/workflows/e2e.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/cover.yml b/.github/workflows/cover.yml index 1f0ef8e1..979410f3 100644 --- a/.github/workflows/cover.yml +++ b/.github/workflows/cover.yml @@ -27,7 +27,7 @@ jobs: echo "::set-output name=modcache::$(go env GOMODCACHE)" - name: Set up cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.go-env.outputs.cache }} @@ -40,7 +40,7 @@ jobs: uses: actions/checkout@v4 - name: Set up ClickHouse cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /opt/ch/clickhouse key: ClickHouse-${{ env.CH_VER }} diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index a17b8fca..d608f1b7 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -39,7 +39,7 @@ jobs: echo "::set-output name=modcache::$(go env GOMODCACHE)" - name: Set up cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ${{ steps.go-env.outputs.cache }} @@ -49,7 +49,7 @@ jobs: e2e-${{ runner.os }}-go${{ matrix.go }}- - name: Set up ClickHouse cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: /opt/ch/clickhouse key: ClickHouse-${{ matrix.clickhouse }}