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 e30c02c586..cd3d167a6b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -73,6 +73,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)) ---