Skip to content

Commit 531b914

Browse files
authored
chore: bump golang to v1.25 (#3984)
* bump go to v1.25 * update changelog
1 parent 37f0b9d commit 531b914

File tree

16 files changed

+26
-27
lines changed

16 files changed

+26
-27
lines changed

.github/workflows/codeql-analysis.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
uses: actions/checkout@v5
2727
- uses: actions/setup-go@v5
2828
with:
29-
go-version: "1.24"
29+
go-version: "1.25.7"
3030
check-latest: true
3131

3232
# Initializes the CodeQL tools for scanning.

.github/workflows/interchain-test.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,8 @@ jobs:
134134

135135
- name: Setup go
136136
uses: actions/setup-go@v5
137-
137+
with:
138+
go-version: 1.25.7
138139
- name: Run test
139140
env:
140141
TEST_DOCKER_REGISTRY: "ghcr.io/${{ github.repository_owner }}"

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v5
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: "1.24"
19+
go-version: "1.25.7"
2020
check-latest: true
2121
- uses: technote-space/get-diff-action@v6.1.2
2222
id: git_diff

.github/workflows/nightly-tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v5
2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: "1.24"
24+
go-version: "1.25.7"
2525
check-latest: true
2626
- name: run-vulncheck
2727
id: vulncheck

.github/workflows/release-sims.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
steps:
2727
- uses: actions/setup-go@v5
2828
with:
29-
go-version: 1.24.x
29+
go-version: 1.25.7
3030
- name: Install runsim
3131
run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0
3232
- uses: actions/cache@v4.2.0
@@ -65,7 +65,7 @@ jobs:
6565
- uses: actions/checkout@v5
6666
- uses: actions/setup-go@v5
6767
with:
68-
go-version: 1.24.x
68+
go-version: 1.25.7
6969
- uses: technote-space/get-diff-action@v6.0.1
7070
with:
7171
PATTERNS: |

.github/workflows/release.yml

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

2525
- uses: actions/setup-go@v5
2626
with:
27-
go-version: "1.24"
27+
go-version: "1.25.7"
2828

2929
- name: Set Env
3030
run: echo "TM_VERSION=$(go list -m github.com/cometbft/cometbft | sed 's:.* ::')" >> $GITHUB_ENV

.github/workflows/sim-label.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
steps:
1818
- uses: actions/setup-go@v5
1919
with:
20-
go-version: 1.24.x
20+
go-version: 1.25.7
2121
- name: Install runsim
2222
run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0
2323
- uses: actions/cache@v4.2.0
@@ -33,7 +33,7 @@ jobs:
3333
- uses: actions/checkout@v5
3434
- uses: actions/setup-go@v5
3535
with:
36-
go-version: 1.24.x
36+
go-version: 1.25.7
3737
- uses: actions/cache@v4.2.0
3838
with:
3939
path: ~/go/bin

.github/workflows/sims.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
- uses: actions/checkout@v5
2323
- uses: actions/setup-go@v5
2424
with:
25-
go-version: 1.24.x
25+
go-version: 1.25.7
2626
- name: Install runsim
2727
run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0
2828
- uses: actions/cache@v4
@@ -40,7 +40,7 @@ jobs:
4040
- uses: actions/checkout@v5
4141
- uses: actions/setup-go@v5
4242
with:
43-
go-version: 1.24.x
43+
go-version: 1.25.7
4444
- uses: technote-space/get-diff-action@v6.0.1
4545
with:
4646
PATTERNS: |
@@ -64,7 +64,7 @@ jobs:
6464
- uses: actions/checkout@v5
6565
- uses: actions/setup-go@v5
6666
with:
67-
go-version: 1.24.x
67+
go-version: 1.25.7
6868
- uses: technote-space/get-diff-action@v6
6969
with:
7070
PATTERNS: |
@@ -88,7 +88,7 @@ jobs:
8888
steps:
8989
- uses: actions/setup-go@v5
9090
with:
91-
go-version: 1.24.x
91+
go-version: 1.25.7
9292
- uses: actions/checkout@v5
9393
- uses: actions/cache@v4
9494
with:

.github/workflows/test.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- uses: actions/checkout@v5
2121
- uses: actions/setup-go@v5
2222
with:
23-
go-version: "1.24"
23+
go-version: "1.25.7"
2424
check-latest: true
2525
cache: true
2626
cache-dependency-path: go.sum
@@ -59,7 +59,7 @@ jobs:
5959
steps:
6060
- uses: actions/setup-go@v5
6161
with:
62-
go-version: 1.24.x
62+
go-version: 1.25.7
6363
- uses: actions/checkout@v5
6464
- uses: technote-space/get-diff-action@v6.1.2
6565
id: git_diff
@@ -108,7 +108,7 @@ jobs:
108108
- uses: actions/checkout@v5
109109
- uses: actions/setup-go@v5
110110
with:
111-
go-version: 1.24.x
111+
go-version: 1.25.7
112112
- uses: technote-space/get-diff-action@v6.1.2
113113
id: git_diff
114114
with:
@@ -153,7 +153,7 @@ jobs:
153153
Makefile
154154
- uses: actions/setup-go@v5
155155
with:
156-
go-version: 1.24.x
156+
go-version: 1.25.7
157157
# the old gaiad binary version is hardcoded, need to be updated each major release.
158158
- name: Install Old Gaiad
159159
run: |

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44

55
### FEATURES
66

7+
- Bump golang from 1.24 to 1.25 ([#3984](https://github.com/cosmos/gaia/pull/3984))
8+
79
### BUG-FIXES
810

911
### DEPENDENCIES

0 commit comments

Comments
 (0)