From 2d32ca6cec3a3cf2575e6bdeeac98f6f9a621ec8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 24 Jan 2024 09:15:10 -0500 Subject: [PATCH] Bump actions/cache from 3 to 4 (#1817) * 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] * Updated Changelog --------- Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: dependabot[bot] --- .github/workflows/sims.yml | 12 ++++++------ CHANGELOG.md | 1 + 2 files changed, 7 insertions(+), 6 deletions(-) diff --git a/.github/workflows/sims.yml b/.github/workflows/sims.yml index 131fa35ba6..dd74f99326 100644 --- a/.github/workflows/sims.yml +++ b/.github/workflows/sims.yml @@ -83,13 +83,13 @@ jobs: echo " db-cache-path: [${{ needs.setup.outputs.db-cache-path }}]" echo "go-cache-key-suffix: [${{ needs.setup.outputs.go-cache-key-suffix }}]" echo " go-cache-path: [${{ needs.setup.outputs.go-cache-path }}]" - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Load db cache id: db-cache-setup with: key: ${{ runner.os }}-${{ needs.setup.outputs.db-cache-key-suffix }} path: ${{ needs.setup.outputs.db-cache-path }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Load go cache id: go-cache-setup with: @@ -144,7 +144,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Load go cache with: key: ${{ runner.os }}-${{ needs.setup.outputs.go-cache-key-suffix }} @@ -203,12 +203,12 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Load db cache with: key: ${{ runner.os }}-${{ needs.setup.outputs.db-cache-key-suffix }} path: ${{ needs.setup.outputs.db-cache-path }} - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Load go cache with: key: ${{ runner.os }}-${{ needs.setup.outputs.go-cache-key-suffix }} @@ -261,7 +261,7 @@ jobs: runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - - uses: actions/cache@v3 + - uses: actions/cache@v4 name: Load go cache with: key: ${{ runner.os }}-${{ needs.setup.outputs.go-cache-key-suffix }} diff --git a/CHANGELOG.md b/CHANGELOG.md index ba5f4174c4..07c15849bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -72,6 +72,7 @@ Ref: https://keepachangelog.com/en/1.0.0/ - Bump `google.golang.org/grpc` from 1.59.0 to 1.60.1 ([#1794](https://github.com/provenance-io/provenance/pull/1794)) - Bump `golang.org/x/crypto` from 0.14.0 to 0.17.0 ([#1788](https://github.com/provenance-io/provenance/pull/1788)) - Bump `cosmossdk.io/errors` from 1.0.0 to 1.0.1 ([#1806](https://github.com/provenance-io/provenance/pull/1806)) +- Bump `actions/cache` from 3 to 4 ([#1817](https://github.com/provenance-io/provenance/pull/1817)) ---