diff --git a/.github/workflows/release-sims.yml b/.github/workflows/release-sims.yml index 03d2f51095..4635ccd3b1 100644 --- a/.github/workflows/release-sims.yml +++ b/.github/workflows/release-sims.yml @@ -22,7 +22,7 @@ jobs: - name: install runsim run: | export GO111MODULE="on" && go get github.com/cosmos/tools/cmd/runsim@v1.0.0 - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-runsim-binary @@ -32,7 +32,7 @@ jobs: needs: [build, install-runsim] steps: - uses: actions/checkout@v2 - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-runsim-binary diff --git a/.github/workflows/sims.yml b/.github/workflows/sims.yml index af5754b8a4..f239c877f0 100644 --- a/.github/workflows/sims.yml +++ b/.github/workflows/sims.yml @@ -31,7 +31,7 @@ jobs: run: go version - name: Install runsim run: export GO111MODULE="on" && go get github.com/cosmos/tools/cmd/runsim@v1.0.0 - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-runsim-binary @@ -52,7 +52,7 @@ jobs: **/**.go go.mod go.sum - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-runsim-binary @@ -80,7 +80,7 @@ jobs: go.sum SET_ENV_NAME_INSERTIONS: 1 SET_ENV_NAME_LINES: 1 - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-runsim-binary @@ -108,7 +108,7 @@ jobs: go.sum SET_ENV_NAME_INSERTIONS: 1 SET_ENV_NAME_LINES: 1 - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-runsim-binary @@ -136,7 +136,7 @@ jobs: go.sum SET_ENV_NAME_INSERTIONS: 1 SET_ENV_NAME_LINES: 1 - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-runsim-binary diff --git a/.github/workflows/tag.yml b/.github/workflows/tag.yml index 0d67d0c6ef..70365ef179 100644 --- a/.github/workflows/tag.yml +++ b/.github/workflows/tag.yml @@ -19,7 +19,7 @@ jobs: - name: Unshallow run: git fetch --prune --unshallow - name: Create release - uses: goreleaser/goreleaser-action@v2.6.0 + uses: goreleaser/goreleaser-action@v2.6.1 with: args: release --rm-dist --release-notes ./RELEASE_CHANGELOG.md env: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index dc23165de6..65e1d36c5b 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: - name: install tparse run: | export GO111MODULE="on" && go get github.com/mfridman/tparse@v0.8.3 - - uses: actions/cache@v2.1.5 + - uses: actions/cache@v2.1.6 with: path: ~/go/bin key: ${{ runner.os }}-go-tparse-binary diff --git a/docs/package-lock.json b/docs/package-lock.json index a61d7592b5..65a162d5d8 100644 --- a/docs/package-lock.json +++ b/docs/package-lock.json @@ -3891,9 +3891,9 @@ "integrity": "sha1-s55/HabrCnW6nBcySzR1PEfgZU0=" }, "dns-packet": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.1.tgz", - "integrity": "sha512-0UxfQkMhYAUaZI+xrNZOz/as5KgDU0M/fQ9b6SpkyLbk3GEswDi6PADJVaYJradtRVsRIlF1zLyOodbcTCDzUg==", + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-1.3.4.tgz", + "integrity": "sha512-BQ6F4vycLXBvdrJZ6S3gZewt6rcrks9KBgM9vrhW+knGRqc8uEdT7fuCwloc7nny5xNoMJ17HGH0R/6fpo8ECA==", "requires": { "ip": "^1.1.0", "safe-buffer": "^5.0.1" diff --git a/simapp/simd/cmd/root.go b/simapp/simd/cmd/root.go index c392bf1a3d..e40412d076 100644 --- a/simapp/simd/cmd/root.go +++ b/simapp/simd/cmd/root.go @@ -45,7 +45,6 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) { WithLegacyAmino(encodingConfig.Amino). WithInput(os.Stdin). WithAccountRetriever(types.AccountRetriever{}). - WithBroadcastMode(flags.BroadcastBlock). WithHomeDir(simapp.DefaultNodeHome). WithViper("") // In simapp, we don't use any prefix for env variables. diff --git a/x/upgrade/abci_test.go b/x/upgrade/abci_test.go index 9735ae6196..18f1752737 100644 --- a/x/upgrade/abci_test.go +++ b/x/upgrade/abci_test.go @@ -212,12 +212,12 @@ func TestNoSpuriousUpgrades(t *testing.T) { func TestPlanStringer(t *testing.T) { require.Equal(t, `Upgrade Plan Name: test - Height: 100 + height: 100 Info: .`, types.Plan{Name: "test", Height: 100, Info: ""}.String()) require.Equal(t, fmt.Sprintf(`Upgrade Plan Name: test - Height: 100 + height: 100 Info: .`), types.Plan{Name: "test", Height: 100, Info: ""}.String()) } diff --git a/x/upgrade/types/plan.go b/x/upgrade/types/plan.go index 57ac950276..cdafbed889 100644 --- a/x/upgrade/types/plan.go +++ b/x/upgrade/types/plan.go @@ -37,5 +37,5 @@ func (p Plan) ShouldExecute(ctx sdk.Context) bool { // DueAt is a string representation of when this plan is due to be executed func (p Plan) DueAt() string { - return fmt.Sprintf("Height: %d", p.Height) + return fmt.Sprintf("height: %d", p.Height) } diff --git a/x/upgrade/types/plan_test.go b/x/upgrade/types/plan_test.go index fe59fea52f..338b737875 100644 --- a/x/upgrade/types/plan_test.go +++ b/x/upgrade/types/plan_test.go @@ -33,13 +33,13 @@ func TestPlanString(t *testing.T) { Info: "https://foo.bar/baz", Height: 7890, }, - expect: "Upgrade Plan\n Name: by height\n Height: 7890\n Info: https://foo.bar/baz.", + expect: "Upgrade Plan\n Name: by height\n height: 7890\n Info: https://foo.bar/baz.", }, "neither": { p: types.Plan{ Name: "almost-empty", }, - expect: "Upgrade Plan\n Name: almost-empty\n Height: 0\n Info: .", + expect: "Upgrade Plan\n Name: almost-empty\n height: 0\n Info: .", }, }