Skip to content

Commit e7bea5f

Browse files
authored
ci: run test pipeline on merge v0.50 branch (#19582)
1 parent c21c824 commit e7bea5f

File tree

4 files changed

+4
-5
lines changed

4 files changed

+4
-5
lines changed

.github/workflows/pr_labeler.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
pull-requests: write # for actions/labeler to add labels to PRs
1313
runs-on: ubuntu-latest
1414
steps:
15-
- uses: actions/labeler@main
15+
- uses: actions/labeler@v4 # v5 is broken, ref https://github.com/actions/labeler/issues/712. Do not bump.
1616
with:
1717
configuration-path: .github/pr_labeler.yml
1818
repo-token: "${{ secrets.GITHUB_TOKEN }}"

.github/workflows/test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
merge_group:
55
push:
66
branches:
7-
- main
7+
- release/v0.50.x
88

99
permissions:
1010
contents: read

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ Ref: https://keepachangelog.com/en/1.0.0/
4343
### Bug Fixes
4444

4545
* (x/auth) [#19549](https://github.com/cosmos/cosmos-sdk/pull/19549) Accept custom get signers when injecting `x/auth/tx`.
46-
* (x/staking) Fix a possible bypass of delagator slashing: [GHSA-86h5-xcpx-cfqc](https://github.com/cosmos/cosmos-sdk/security/advisories/GHSA-86h5-xcpx-cfqc)
46+
* (x/staking) Fix a possible bypass of delegator slashing: [GHSA-86h5-xcpx-cfqc](https://github.com/cosmos/cosmos-sdk/security/advisories/GHSA-86h5-xcpx-cfqc)
4747

4848
## [v0.50.4](https://github.com/cosmos/cosmos-sdk/releases/tag/v0.50.4) - 2024-02-19
4949

testutil/sims/app_helpers.go

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,6 @@ import (
1212
dbm "github.com/cosmos/cosmos-db"
1313

1414
coreheader "cosmossdk.io/core/header"
15-
1615
"cosmossdk.io/depinject"
1716
sdkmath "cosmossdk.io/math"
1817

@@ -124,7 +123,7 @@ func NextBlock(app *runtime.App, ctx sdk.Context, jumpTime time.Duration) (sdk.C
124123

125124
header := ctx.BlockHeader()
126125
header.Time = newBlockTime
127-
header.Height = header.Height + 1
126+
header.Height++
128127

129128
newCtx := app.BaseApp.NewUncachedContext(false, header).WithHeaderInfo(coreheader.Info{
130129
Height: header.Height,

0 commit comments

Comments
 (0)