Skip to content

Commit f5e8e51

Browse files
aljo242Zygimantass
andauthored
chore: set up release/v0.53.x branch (#23660)
Co-authored-by: Zygimantas <[email protected]> Co-authored-by: Zygimantas <[email protected]>
1 parent ec78863 commit f5e8e51

File tree

162 files changed

+1453
-2119
lines changed

Some content is hidden

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

162 files changed

+1453
-2119
lines changed

.github/workflows/build.yml

+3-2
Original file line numberDiff line numberDiff line change
@@ -19,12 +19,13 @@ jobs:
1919
runs-on: ubuntu-latest
2020
strategy:
2121
matrix:
22-
go-arch: ["amd64", "arm", "arm64"]
22+
# go-arch: ["amd64", "arm", "arm64"]
23+
go-arch: ["amd64", "arm64"]
2324
steps:
2425
- uses: actions/checkout@v3
2526
- uses: actions/setup-go@v4
2627
with:
27-
go-version: "1.21"
28+
go-version: "1.23"
2829
check-latest: true
2930
- uses: technote-space/[email protected]
3031
id: git_diff

.github/workflows/codeql-analysis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
uses: actions/checkout@v3
2626
- uses: actions/setup-go@v4
2727
with:
28-
go-version: "1.21"
28+
go-version: "1.23"
2929
check-latest: true
3030
# Initializes the CodeQL tools for scanning.
3131
- name: Initialize CodeQL

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

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

.github/workflows/dependencies-review.yml

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

.github/workflows/docker.yml

+10-7
Original file line numberDiff line numberDiff line change
@@ -9,8 +9,9 @@ on:
99
branches:
1010
- main
1111
tags:
12-
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0, v20.15.10
13-
- "v[0-9]+.[0-9]+.[0-9]+-rc*" # Push events to matching v*, i.e. v1.0-rc1, v20.15.10-rc5
12+
- "v[0-9]+.[0-9]+.[0-9]+" # Push events to matching v*, i.e. v1.0.0, v20.15.10
13+
- "v[0-9]+.[0-9]+.[0-9]+-rc.*" # Push events to matching v*, i.e. v1.0.0-rc.1, v20.15.10-rc.5
14+
- "v[0-9]+.[0-9]+.[0-9]+-beta.*" # Push events to matching v*, i.e. v1.0.0-beta.1, v20.15.10-beta.5
1415
workflow_dispatch:
1516
inputs:
1617
tags:
@@ -21,6 +22,7 @@ on:
2122
permissions:
2223
contents: read
2324
packages: write
25+
id-token: write
2426

2527
env:
2628
# Use docker.io for Docker Hub if empty
@@ -32,13 +34,13 @@ jobs:
3234
build:
3335
runs-on: ubuntu-latest
3436
steps:
35-
- uses: actions/checkout@v3
37+
- uses: actions/checkout@v4
3638
with:
3739
fetch-depth: 0
3840

3941
- name: Extract Docker metadata
4042
id: meta
41-
uses: docker/metadata-action@v4
43+
uses: docker/metadata-action@v5
4244
with:
4345
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
4446
tags: |
@@ -49,16 +51,17 @@ jobs:
4951
latest=false
5052
5153
- name: Set up Docker Buildx
52-
uses: docker/setup-buildx-action@v2
54+
uses: docker/setup-buildx-action@v3
5355

5456
- name: Log into registry ${{ env.REGISTRY }}
5557
if: ${{ github.event_name != 'pull_request' }}
56-
uses: docker/login-action@v2
58+
uses: docker/login-action@v3
5759
with:
5860
registry: ${{ env.REGISTRY }}
5961
username: ${{ github.actor }}
6062
password: ${{ secrets.GITHUB_TOKEN }}
61-
63+
- name: Setup Depot
64+
uses: depot/setup-action@v1
6265
- name: Publish to GitHub Packages
6366
uses: depot/build-push-action@v1
6467
with:

.github/workflows/lint.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: actions/setup-go@v4
1818
with:
19-
go-version: "1.21"
19+
go-version: "1.23"
2020
check-latest: true
2121
- uses: technote-space/[email protected]
2222
id: git_diff

.github/workflows/proto-docker.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,7 @@ jobs:
3030
permissions:
3131
contents: read
3232
packages: write
33+
id-token: write
3334
steps:
3435
# set VERSION to new version when making changes, when merged to main the image will automatically be pushed
3536
- uses: actions/checkout@v3
@@ -56,7 +57,8 @@ jobs:
5657
registry: ${{ env.REGISTRY }}
5758
username: ${{ github.actor }}
5859
password: ${{ secrets.GITHUB_TOKEN }}
59-
60+
- name: Setup Depot
61+
uses: depot/setup-action@v1
6062
- name: Publish to GHCR
6163
uses: depot/build-push-action@v1
6264
with:

.github/workflows/release-confix.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: actions/setup-go@v4
1818
with:
19-
go-version: "1.21"
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

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
- uses: actions/checkout@v3
1717
- uses: actions/setup-go@v4
1818
with:
19-
go-version: "1.21"
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

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

.github/workflows/sims-045.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: "release/v0.45.x"
2222
- uses: actions/setup-go@v4
2323
with:
24-
go-version: "1.21"
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@v4
3535
with:
36-
go-version: "1.21"
36+
go-version: "1.23"
3737
check-latest: true
3838
- name: Install runsim
3939
run: go install github.com/cosmos/tools/cmd/[email protected]
@@ -51,7 +51,7 @@ jobs:
5151
ref: "release/v0.45.x"
5252
- uses: actions/setup-go@v4
5353
with:
54-
go-version: "1.21"
54+
go-version: "1.23"
5555
check-latest: true
5656
- uses: actions/cache@v3
5757
with:
@@ -70,7 +70,7 @@ jobs:
7070
ref: "release/v0.45.x"
7171
- uses: actions/setup-go@v4
7272
with:
73-
go-version: "1.21"
73+
go-version: "1.23"
7474
check-latest: true
7575
- uses: actions/cache@v3
7676
with:
@@ -90,7 +90,7 @@ jobs:
9090
ref: "release/v0.45.x"
9191
- uses: actions/setup-go@v4
9292
with:
93-
go-version: "1.21"
93+
go-version: "1.23"
9494
check-latest: true
9595
- uses: actions/cache@v3
9696
with:

.github/workflows/sims-046.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: "release/v0.46.x"
2222
- uses: actions/setup-go@v4
2323
with:
24-
go-version: "1.21"
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@v4
3535
with:
36-
go-version: "1.21"
36+
go-version: "1.23"
3737
check-latest: true
3838
- name: Install runsim
3939
run: go install github.com/cosmos/tools/cmd/[email protected]
@@ -52,7 +52,7 @@ jobs:
5252
ref: "release/v0.46.x"
5353
- uses: actions/setup-go@v4
5454
with:
55-
go-version: "1.21"
55+
go-version: "1.23"
5656
check-latest: true
5757
- uses: actions/cache@v3
5858
with:
@@ -71,7 +71,7 @@ jobs:
7171
ref: "release/v0.46.x"
7272
- uses: actions/setup-go@v4
7373
with:
74-
go-version: "1.21"
74+
go-version: "1.23"
7575
check-latest: true
7676
- uses: actions/cache@v3
7777
with:
@@ -90,7 +90,7 @@ jobs:
9090
ref: "release/v0.46.x"
9191
- uses: actions/setup-go@v4
9292
with:
93-
go-version: "1.21"
93+
go-version: "1.23"
9494
check-latest: true
9595
- uses: actions/cache@v3
9696
with:

.github/workflows/sims-047.yml

+5-5
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
ref: "release/v0.47.x"
2222
- uses: actions/setup-go@v4
2323
with:
24-
go-version: "1.21"
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@v4
3535
with:
36-
go-version: "1.21"
36+
go-version: "1.23"
3737
check-latest: true
3838
- name: Install runsim
3939
run: go install github.com/cosmos/tools/cmd/[email protected]
@@ -52,7 +52,7 @@ jobs:
5252
ref: "release/v0.47.x"
5353
- uses: actions/setup-go@v4
5454
with:
55-
go-version: "1.21"
55+
go-version: "1.23"
5656
check-latest: true
5757
- uses: actions/cache@v3
5858
with:
@@ -71,7 +71,7 @@ jobs:
7171
ref: "release/v0.47.x"
7272
- uses: actions/setup-go@v4
7373
with:
74-
go-version: "1.21"
74+
go-version: "1.23"
7575
check-latest: true
7676
- uses: actions/cache@v3
7777
with:
@@ -90,7 +90,7 @@ jobs:
9090
ref: "release/v0.47.x"
9191
- uses: actions/setup-go@v4
9292
with:
93-
go-version: "1.21"
93+
go-version: "1.23"
9494
check-latest: true
9595
- uses: actions/cache@v3
9696
with:

.github/workflows/sims-nightly.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
steps:
2323
- uses: actions/setup-go@v4
2424
with:
25-
go-version: "1.21"
25+
go-version: "1.23"
2626
check-latest: true
2727
- name: Install runsim
2828
run: go install github.com/cosmos/tools/cmd/[email protected]
@@ -37,7 +37,7 @@ jobs:
3737
- uses: actions/checkout@v3
3838
- uses: actions/setup-go@v4
3939
with:
40-
go-version: "1.21"
40+
go-version: "1.23"
4141
check-latest: true
4242
- uses: actions/cache@v3
4343
with:

.github/workflows/sims.yml

+4-4
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ jobs:
2121
- uses: actions/checkout@v3
2222
- uses: actions/setup-go@v4
2323
with:
24-
go-version: "1.21"
24+
go-version: "1.23"
2525
check-latest: true
2626
- run: make build
2727
- name: Install runsim
@@ -39,7 +39,7 @@ jobs:
3939
- uses: actions/checkout@v3
4040
- uses: actions/setup-go@v4
4141
with:
42-
go-version: "1.21"
42+
go-version: "1.23"
4343
check-latest: true
4444
- uses: actions/cache@v3
4545
with:
@@ -56,7 +56,7 @@ jobs:
5656
- uses: actions/checkout@v3
5757
- uses: actions/setup-go@v4
5858
with:
59-
go-version: "1.21"
59+
go-version: "1.23"
6060
check-latest: true
6161
- uses: actions/cache@v3
6262
with:
@@ -74,7 +74,7 @@ jobs:
7474
- uses: actions/checkout@v3
7575
- uses: actions/setup-go@v4
7676
with:
77-
go-version: "1.21"
77+
go-version: "1.23"
7878
check-latest: true
7979
- uses: actions/cache@v3
8080
with:

0 commit comments

Comments
 (0)