Skip to content

Commit 8193308

Browse files
authored
build(deps): use Go 1.23 instead of Go 1.22 (#21280)
1 parent 0fe3115 commit 8193308

70 files changed

Lines changed: 174 additions & 172 deletions

File tree

Some content is hidden

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

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
- uses: DeterminateSystems/magic-nix-cache-action@main
2626
- uses: actions/setup-go@v5
2727
with:
28-
go-version: "1.22"
28+
go-version: "1.23"
2929
check-latest: true
3030
###################
3131
#### Build App ####

.github/workflows/codeql-analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,15 +29,15 @@ jobs:
2929
uses: actions/checkout@v4
3030
- uses: actions/setup-go@v5
3131
with:
32-
go-version: "1.22"
32+
go-version: "1.23"
3333
check-latest: true
3434
# Initializes the CodeQL tools for scanning.
3535
- name: Initialize CodeQL
3636
uses: github/codeql-action/init@v3
3737
with:
3838
languages: "go"
3939
config-file: ./.github/codeql/config.yml
40-
40+
4141
# If you wish to specify custom queries, you can do so here or in a config file.
4242
# By default, queries listed here will override any specified in a config file.
4343
# Prefix the list here with "+" to use these queries and those in the config file.

.github/workflows/dependabot-update-all.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717
token: ${{ secrets.PRBOT_PAT }}
1818
- uses: actions/setup-go@v5
1919
with:
20-
go-version: "1.22"
20+
go-version: "1.23"
2121
check-latest: true
2222
- name: Extract updated dependency
2323
id: deps

.github/workflows/dependencies-review.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
uses: actions/checkout@v4
1515
- uses: actions/setup-go@v5
1616
with:
17-
go-version: "1.22"
17+
go-version: "1.23"
1818
check-latest: true
1919
- name: "Dependency Review"
2020
uses: actions/dependency-review-action@v4

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: DeterminateSystems/magic-nix-cache-action@main
1919
- uses: actions/setup-go@v5
2020
with:
21-
go-version: "1.22.2"
21+
go-version: "1.23"
2222
check-latest: true
2323
- uses: technote-space/get-diff-action@v6.1.2
2424
id: git_diff

.github/workflows/pr-go-mod-tidy-mocks.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Set up Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: "1.22"
23+
go-version: "1.23"
2424
check-latest: true
2525
- name: Run go mod tidy
2626
run: ./scripts/go-mod-tidy-all.sh
@@ -40,7 +40,7 @@ jobs:
4040
- name: Set up Go
4141
uses: actions/setup-go@v5
4242
with:
43-
go-version: "1.22"
43+
go-version: "1.23"
4444
check-latest: true
4545
- name: Generate mocks
4646
run: make mocks

.github/workflows/release-confix.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: "1.22"
19+
go-version: "1.23"
2020
check-latest: true
2121
# get 'v*.*.*' part from 'confix/v*.*.*' and save to $GITHUB_ENV
2222
- name: Set env

.github/workflows/release-cosmovisor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v4
1717
- uses: actions/setup-go@v5
1818
with:
19-
go-version: "1.22"
19+
go-version: "1.23"
2020
check-latest: true
2121
# get 'v*.*.*' part from 'cosmovisor/v*.*.*' and save to $GITHUB_ENV
2222
- name: Set env

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install Go
2121
uses: actions/setup-go@v5
2222
with:
23-
go-version: "1.22"
23+
go-version: "1.23"
2424
check-latest: true
2525
- name: Unshallow
2626
run: git fetch --prune --unshallow

.github/workflows/sims-047.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: "release/v0.47.x"
2222
- uses: actions/setup-go@v5
2323
with:
24-
go-version: "1.22"
24+
go-version: "1.23"
2525
check-latest: true
2626
- run: make build
2727

@@ -33,7 +33,7 @@ jobs:
3333
steps:
3434
- uses: actions/setup-go@v5
3535
with:
36-
go-version: "1.22"
36+
go-version: "1.23"
3737
check-latest: true
3838
- name: Install runsim
3939
run: go install github.com/cosmos/tools/cmd/runsim@v1.0.0
@@ -52,7 +52,7 @@ jobs:
5252
ref: "release/v0.47.x"
5353
- uses: actions/setup-go@v5
5454
with:
55-
go-version: "1.22"
55+
go-version: "1.23"
5656
check-latest: true
5757
- uses: actions/cache@v4
5858
with:
@@ -71,7 +71,7 @@ jobs:
7171
ref: "release/v0.47.x"
7272
- uses: actions/setup-go@v5
7373
with:
74-
go-version: "1.22"
74+
go-version: "1.23"
7575
check-latest: true
7676
- uses: actions/cache@v4
7777
with:
@@ -90,7 +90,7 @@ jobs:
9090
ref: "release/v0.47.x"
9191
- uses: actions/setup-go@v5
9292
with:
93-
go-version: "1.22"
93+
go-version: "1.23"
9494
check-latest: true
9595
- uses: actions/cache@v4
9696
with:

0 commit comments

Comments
 (0)