Skip to content

Commit bd8c7e4

Browse files
authored
build(deps): replace tendermint/tm-db with cometbft/cometbft-db (#973)
* build(deps): replace tendermint/tm-db with cometbft/cometbft-db * build(deps): replace tm-db with cometbft-db * build(deps): change version of cometbft-db o 1.0.1 * build(deps): bump golang from 1.23 to 1.23.2
1 parent a760162 commit bd8c7e4

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

78 files changed

+140
-144
lines changed

.github/actions/bls/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ runs:
1515
steps:
1616
- uses: actions/setup-go@v2
1717
with:
18-
go-version: "1.23"
18+
go-version: "1.23.2"
1919
- uses: actions/checkout@v2
2020
with:
2121
submodules: true

.github/workflows/build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/[email protected]
2525
with:
26-
go-version: "1.23"
26+
go-version: "1.23.2"
2727
- uses: actions/checkout@v4
2828
- uses: technote-space/get-diff-action@v6
2929
with:
@@ -54,7 +54,7 @@ jobs:
5454
steps:
5555
- uses: actions/[email protected]
5656
with:
57-
go-version: "1.23"
57+
go-version: "1.23.2"
5858
- uses: actions/checkout@v4
5959
- uses: technote-space/get-diff-action@v6
6060
with:
@@ -79,7 +79,7 @@ jobs:
7979
steps:
8080
- uses: actions/[email protected]
8181
with:
82-
go-version: "1.23"
82+
go-version: "1.23.2"
8383
- uses: actions/checkout@v4
8484
- uses: technote-space/get-diff-action@v6
8585
with:

.github/workflows/check-generated.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
steps:
2424
- uses: actions/[email protected]
2525
with:
26-
go-version: "1.23"
26+
go-version: "1.23.2"
2727

2828
- uses: actions/checkout@v4
2929

@@ -49,7 +49,7 @@ jobs:
4949
steps:
5050
- uses: actions/[email protected]
5151
with:
52-
go-version: "1.23"
52+
go-version: "1.23.2"
5353

5454
- uses: actions/checkout@v4
5555
with:

.github/workflows/e2e.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ jobs:
2929
steps:
3030
- uses: actions/[email protected]
3131
with:
32-
go-version: "1.23"
32+
go-version: "1.23.2"
3333

3434
- name: Set up Docker Buildx
3535
uses: docker/[email protected]

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
submodules: true
3333
- uses: actions/[email protected]
3434
with:
35-
go-version: "^1.23"
35+
go-version: "^1.23.2"
3636
- uses: technote-space/get-diff-action@v6
3737
with:
3838
PATTERNS: |

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414

1515
- uses: actions/[email protected]
1616
with:
17-
go-version: "1.23"
17+
go-version: "1.23.2"
1818

1919
- name: Build
2020
uses: goreleaser/goreleaser-action@v6

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
steps:
2020
- uses: actions/[email protected]
2121
with:
22-
go-version: "1.23"
22+
go-version: "1.23.2"
2323
- uses: actions/checkout@v4
2424
- uses: technote-space/get-diff-action@v6
2525
with:

DOCKER/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# * image - creates final image of minimal size
66

77
ARG ALPINE_VERSION=3.19
8-
ARG GOLANG_VERSION=1.23
8+
ARG GOLANG_VERSION=1.23.2
99
#################################
1010
# STAGE 1: install dependencies #
1111
#################################

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ requirements if installing from source.
4747

4848
| Requirement | Notes |
4949
|-------------|------------------|
50-
| Go version | Go1.23 or higher |
50+
| Go version | Go1.23.2 or higher |
5151

5252
## Versioning
5353

STYLE_GUIDE.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ Sometimes it's necessary to rename libraries to avoid naming collisions or ambig
7676
* Use [goimports](https://godoc.org/golang.org/x/tools/cmd/goimports)
7777
* Separate imports into blocks - one for the standard lib, one for external libs and one for application libs.
7878
* Here are some common library labels for consistency:
79-
* dbm "github.com/tendermint/tm-db"
79+
* dbm "github.com/cometbft/cometbft-db"
8080
* tmcmd "github.com/tendermint/tendermint/cmd/tendermint/commands"
8181
* tmcfg "github.com/tendermint/tendermint/config/tendermint"
8282
* tmtypes "github.com/tendermint/tendermint/types"

0 commit comments

Comments
 (0)