From cb527497204347437bf96049515b26767119f97e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Sun, 21 Jan 2024 10:32:53 +0000 Subject: [PATCH] build(deps): bump the ci group with 1 update Bumps the ci group with 1 update: [actions/cache](https://github.com/actions/cache). Updates `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 dependency-group: ci ... Signed-off-by: dependabot[bot] --- .github/workflows/e2e.yaml | 2 +- .github/workflows/e2e_cli.yaml | 2 +- .github/workflows/release_bootstrap.yaml | 2 +- .github/workflows/tests.yaml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/e2e.yaml b/.github/workflows/e2e.yaml index 831e62b..1608906 100644 --- a/.github/workflows/e2e.yaml +++ b/.github/workflows/e2e.yaml @@ -72,7 +72,7 @@ jobs: with: go-version-file: '${{ github.workspace }}/MPAS/go.mod' - name: Restore Go cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/e2e_cli.yaml b/.github/workflows/e2e_cli.yaml index d85ef51..503867b 100644 --- a/.github/workflows/e2e_cli.yaml +++ b/.github/workflows/e2e_cli.yaml @@ -15,7 +15,7 @@ jobs: - name: Checkout mpas repository uses: actions/checkout@v4 - name: Restore Go cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/release_bootstrap.yaml b/.github/workflows/release_bootstrap.yaml index 33cd8a8..0e5cc28 100644 --- a/.github/workflows/release_bootstrap.yaml +++ b/.github/workflows/release_bootstrap.yaml @@ -17,7 +17,7 @@ jobs: packages: write steps: - name: Restore Go cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 60eba60..bba1fcb 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -20,7 +20,7 @@ jobs: - name: Checkout uses: actions/checkout@v4 - name: Restore Go cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/go/pkg/mod key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}