From 907a42625734ec2e619c1e4ae5fb19dfbf55ba5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 6 May 2024 07:03:13 +0000 Subject: [PATCH] :arrow_up: Bump actions/cache from 3.2.6 to 4.0.2 Bumps [actions/cache](https://github.com/actions/cache) from 3.2.6 to 4.0.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/v3.2.6...v4.0.2) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index e2a4fda..22bd348 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -18,7 +18,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Set cache - uses: actions/cache@v3.2.6 + uses: actions/cache@v4.0.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }} @@ -38,14 +38,14 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Download go mod cache - uses: actions/cache@v3.2.6 + uses: actions/cache@v4.0.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }} restore-keys: | ${{ runner.os }}-gomod- - name: Set go build cache - uses: actions/cache@v3.2.6 + uses: actions/cache@v4.0.2 with: path: /tmp/go/cache key: ${{ runner.os }}-go-build-${{ github.ref }}-${{ github.sha }} @@ -75,7 +75,7 @@ jobs: - name: Checkout uses: actions/checkout@v3 - name: Download go mod cache - uses: actions/cache@v3.2.6 + uses: actions/cache@v4.0.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }} @@ -94,7 +94,7 @@ jobs: with: go-version: 1.17 - uses: actions/checkout@v3 - - uses: actions/cache@v3.2.6 + - uses: actions/cache@v4.0.2 with: path: ~/go/pkg/mod key: ${{ runner.os }}-gomod-${{ hashFiles('**/go.sum') }}