Skip to content

Commit 59268dc

Browse files
authored
Merge pull request #1235 from dashpay/release_1.5.2
chore(release): update changelog and bump version to 1.5.2
2 parents 73b1759 + b68d197 commit 59268dc

File tree

34 files changed

+672
-430
lines changed

34 files changed

+672
-430
lines changed

.github/actions/bls/action.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ runs:
1515
steps:
1616
- uses: actions/setup-go@v2
1717
with:
18-
go-version: "1.25.1"
19-
- uses: actions/checkout@v2
18+
go-version: "1.25.4"
19+
- uses: actions/checkout@v6
2020
with:
2121
submodules: true
2222
- name: Get BLS library revision

.github/workflows/build.yml

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -21,10 +21,10 @@ jobs:
2121
goos: ["linux"]
2222
timeout-minutes: 55
2323
steps:
24-
- uses: actions/setup-go@v6.0.0
24+
- uses: actions/setup-go@v6.2.0
2525
with:
26-
go-version: "1.25.1"
27-
- uses: actions/checkout@v5
26+
go-version: "1.25.4"
27+
- uses: actions/checkout@v6
2828
- uses: technote-space/get-diff-action@v6
2929
with:
3030
PATTERNS: |
@@ -52,10 +52,10 @@ jobs:
5252
needs: build
5353
timeout-minutes: 5
5454
steps:
55-
- uses: actions/setup-go@v6.0.0
55+
- uses: actions/setup-go@v6.2.0
5656
with:
57-
go-version: "1.25.1"
58-
- uses: actions/checkout@v5
57+
go-version: "1.25.4"
58+
- uses: actions/checkout@v6
5959
- uses: technote-space/get-diff-action@v6
6060
with:
6161
PATTERNS: |
@@ -77,10 +77,10 @@ jobs:
7777
needs: build
7878
timeout-minutes: 5
7979
steps:
80-
- uses: actions/setup-go@v6.0.0
80+
- uses: actions/setup-go@v6.2.0
8181
with:
82-
go-version: "1.25.1"
83-
- uses: actions/checkout@v5
82+
go-version: "1.25.4"
83+
- uses: actions/checkout@v6
8484
- uses: technote-space/get-diff-action@v6
8585
with:
8686
PATTERNS: |

.github/workflows/check-generated.yml

Lines changed: 7 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,11 @@ jobs:
1818
check-mocks:
1919
runs-on: ubuntu-latest
2020
steps:
21-
- uses: actions/setup-go@v6.0.0
21+
- uses: actions/setup-go@v6.2.0
2222
with:
23-
go-version: "1.25.1"
23+
go-version: "1.25.4"
2424

25-
- uses: actions/checkout@v5
25+
- uses: actions/checkout@v6
2626

2727
- uses: technote-space/get-diff-action@v6
2828
with:
@@ -53,11 +53,11 @@ jobs:
5353
check-proto:
5454
runs-on: ubuntu-latest
5555
steps:
56-
- uses: actions/setup-go@v6.0.0
56+
- uses: actions/setup-go@v6.2.0
5757
with:
58-
go-version: "1.25.1"
58+
go-version: "1.25.4"
5959

60-
- uses: actions/checkout@v5
60+
- uses: actions/checkout@v6
6161

6262
- uses: technote-space/get-diff-action@v6
6363
with:
@@ -76,15 +76,7 @@ jobs:
7676
export GOBIN="${tools}/bin"
7777
7878
go install github.com/bufbuild/buf/cmd/buf
79-
# Forked version of gogoproto plugin with fix https://github.com/cosmos/gogoproto/pull/150
80-
# go install github.com/cosmos/gogoproto/protoc-gen-gogofaster@latest
81-
git clone --depth 1 --branch fix/panic-marshalto-nil-m \
82-
https://github.com/lklimek/gogoproto /tmp/gogoproto
83-
pushd /tmp/gogoproto
84-
go install ./protoc-gen-gogofaster
85-
popd
86-
rm -rf /tmp/gogoproto
87-
# End of forked version installation
79+
go install github.com/cosmos/gogoproto/protoc-gen-gogofaster
8880
8981
make proto-gen
9082

.github/workflows/docker.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ jobs:
2828
env:
2929
PLATFORMS: ${{ github.event_name == 'release' && 'linux/amd64,linux/arm64' || github.event.inputs.platforms }}
3030
steps:
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232

3333
- name: Set up QEMU
3434
uses: docker/setup-qemu-action@master
3535
with:
3636
platforms: all
3737

3838
- name: Set up Docker Build
39-
uses: docker/setup-buildx-action@v3.11.1
39+
uses: docker/setup-buildx-action@v3.12.0
4040

4141
- name: Login to DockerHub
4242
if: ${{ github.event_name != 'pull_request' }}

.github/workflows/docs-deployment.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
- name: Install generator dependencies
2929
run: |
3030
apk add --no-cache make bash git npm
31-
- uses: actions/checkout@v5
31+
- uses: actions/checkout@v6
3232
with:
3333
# We need to fetch full history so the backport branches for previous
3434
# versions will be available for the build.
@@ -37,7 +37,7 @@ jobs:
3737
run: |
3838
git config --global --add safe.directory "$PWD"
3939
make build-docs
40-
- uses: actions/upload-artifact@v4
40+
- uses: actions/upload-artifact@v6
4141
with:
4242
name: build-output
4343
path: ~/output/
@@ -49,8 +49,8 @@ jobs:
4949
permissions:
5050
contents: write
5151
steps:
52-
- uses: actions/checkout@v5
53-
- uses: actions/download-artifact@v5
52+
- uses: actions/checkout@v6
53+
- uses: actions/download-artifact@v7
5454
with:
5555
name: build-output
5656
path: ~/output

.github/workflows/e2e.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,14 +23,14 @@ jobs:
2323
CGO_LDFLAGS: "-L/usr/local/lib -ldashbls -lrelic_s -lmimalloc-secure -lgmp"
2424
CGO_CXXFLAGS: "-I/usr/local/include"
2525
steps:
26-
- uses: actions/setup-go@v6.0.0
26+
- uses: actions/setup-go@v6.2.0
2727
with:
28-
go-version: "1.25.1"
28+
go-version: "1.25.4"
2929

3030
- name: Set up Docker Buildx
31-
uses: docker/setup-buildx-action@v3.11.1
31+
uses: docker/setup-buildx-action@v3.12.0
3232

33-
- uses: actions/checkout@v5
33+
- uses: actions/checkout@v6
3434
with:
3535
submodules: true
3636
- uses: technote-space/get-diff-action@v6
@@ -75,7 +75,7 @@ jobs:
7575
if: ${{ failure() }}
7676

7777
- name: Upload ${{ matrix.testnet }} logs
78-
uses: actions/upload-artifact@v4
78+
uses: actions/upload-artifact@v6
7979
with:
8080
name: ${{ matrix.testnet }}.log
8181
path: test/e2e/${{ matrix.testnet }}.log

.github/workflows/janitor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ jobs:
1010
runs-on: ubuntu-latest
1111
timeout-minutes: 3
1212
steps:
13-
- uses: styfle/cancel-workflow-action@0.12.1
13+
- uses: styfle/cancel-workflow-action@0.13.0
1414
with:
1515
workflow_id: 1041851,1401230,2837803
1616
access_token: ${{ github.token }}

.github/workflows/jepsen.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
runs-on: ubuntu-latest
4747
steps:
4848
- name: Checkout the Jepsen repository
49-
uses: actions/checkout@v5
49+
uses: actions/checkout@v6
5050
with:
5151
repository: 'tendermint/jepsen'
5252

@@ -58,7 +58,7 @@ jobs:
5858
run: docker exec -i jepsen-control bash -c 'source /root/.bashrc; cd /jepsen/tendermint; lein run test --nemesis ${{ github.event.inputs.nemesis }} --workload ${{ github.event.inputs.workload }} --concurrency ${{ github.event.inputs.concurrency }} --tendermint-url ${{ github.event.inputs.tendermintUrl }} --merkleeyes-url ${{ github.event.inputs.merkleeyesUrl }} --time-limit ${{ github.event.inputs.timeLimit }} ${{ github.event.inputs.dupOrSuperByzValidators }}'
5959

6060
- name: Archive results
61-
uses: actions/upload-artifact@v4
61+
uses: actions/upload-artifact@v6
6262
with:
6363
name: results
6464
path: tendermint/store/latest

.github/workflows/lint.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
CGO_LDFLAGS: "-L/usr/local/lib -ldashbls -lrelic_s -lmimalloc-secure -lgmp"
2424
CGO_CXXFLAGS: "-I/usr/local/include"
2525
steps:
26-
- uses: actions/checkout@v5
26+
- uses: actions/checkout@v6
2727
with:
2828
submodules: true
2929

@@ -37,10 +37,10 @@ jobs:
3737
go.sum
3838
.golangci.yml
3939
40-
- uses: actions/setup-go@v6.0.0
40+
- uses: actions/setup-go@v6.2.0
4141
if: env.GIT_DIFF
4242
with:
43-
go-version: "^1.25.1"
43+
go-version: "^1.25.4"
4444

4545
- name: Install dependencies
4646
if: env.GIT_DIFF
@@ -50,13 +50,13 @@ jobs:
5050
if: env.GIT_DIFF
5151
name: Install BLS library
5252

53-
- uses: golangci/golangci-lint-action@v8.0.0
53+
- uses: golangci/golangci-lint-action@v9.2.0
5454
if: env.GIT_DIFF
5555
with:
5656
# Required: the version of golangci-lint is required and
5757
# must be specified without patch version: we always use the
5858
# latest patch version.
59-
version: v2.5
59+
version: v2.8
6060
args: --timeout 10m
6161
github-token: ${{ secrets.github_token }}
6262
only-new-issues: true

.github/workflows/markdown-links.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ jobs:
1515
markdown-link-check:
1616
runs-on: ubuntu-latest
1717
steps:
18-
- uses: actions/checkout@v5
18+
- uses: actions/checkout@v6
1919
- uses: technote-space/get-diff-action@v6
2020
with:
2121
PATTERNS: |

0 commit comments

Comments
 (0)