diff --git a/.github/workflows/golangci-lint.yml b/.github/workflows/golangci-lint.yml index 6c20bdb9a..0b8a3031a 100644 --- a/.github/workflows/golangci-lint.yml +++ b/.github/workflows/golangci-lint.yml @@ -37,13 +37,13 @@ jobs: echo "go-mod-cache=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT - name: "Go build cache" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-build-cache }} key: go-build-cache-${{ hashFiles('**/go.sum') }} - name: "Go mod cache" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-mod-cache }} key: go-mod-cache-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/integration-tests.yml b/.github/workflows/integration-tests.yml index 419b175a9..4cf075881 100644 --- a/.github/workflows/integration-tests.yml +++ b/.github/workflows/integration-tests.yml @@ -36,13 +36,13 @@ jobs: echo "go-mod-cache=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT - name: "Go build cache" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-build-cache }} key: go-build-cache-${{ hashFiles('**/go.sum') }} - name: "Go mod cache" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-mod-cache }} key: go-mod-cache-${{ hashFiles('**/go.sum') }} diff --git a/.github/workflows/unit-tests.yml b/.github/workflows/unit-tests.yml index c4c39d030..a1638af30 100644 --- a/.github/workflows/unit-tests.yml +++ b/.github/workflows/unit-tests.yml @@ -30,13 +30,13 @@ jobs: echo "go-mod-cache=$(go env GOMODCACHE)" >> $GITHUB_OUTPUT - name: "Go build cache" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-build-cache }} key: go-build-cache-${{ hashFiles('**/go.sum') }} - name: "Go mod cache" - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.go-cache-paths.outputs.go-mod-cache }} key: go-mod-cache-${{ hashFiles('**/go.sum') }} diff --git a/CHANGELOG.md b/CHANGELOG.md index 0ebf77776..f3d35c484 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -97,6 +97,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Bump `github.com/cometbft/cometbft-db` from 0.9.0 to 0.9.1 ([#1760](https://github.com/NibiruChain/nibiru/pull/1760)) - Bump `google.golang.org/grpc` from 1.60.0 to 1.60.1 ([#1763](https://github.com/NibiruChain/nibiru/pull/1763)) - Bump `github.com/grpc-ecosystem/grpc-gateway/v2` from 2.18.1 to 2.19.0 ([#1767](https://github.com/NibiruChain/nibiru/pull/1767)) +- Bump `actions/cache` from 3 to 4 ([#1773](https://github.com/NibiruChain/nibiru/pull/1773)) * Bump `github.com/prometheus/client_golang` from 1.17.0 to 1.18.0 ([#1750](https://github.com/NibiruChain/nibiru/pull/1750)) * Bump `google.golang.org/protobuf` from 1.31.0 to 1.32.0 ([#1756](https://github.com/NibiruChain/nibiru/pull/1756))