Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/codeql.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.24
go-version: '1.25.6'
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/cross-arch-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.24'
go-version: '1.25.6'

- name: Install system dependencies
run: |
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v6
with:
go-version: '1.24'
go-version: '1.25.6'

- name: Install system dependencies
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eth_blocktests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.24
go-version: '1.25.6'

- name: Clone ETH Blocktests
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/go-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version: '1.24'
go-version: '1.25.6'
- name: Remove unnecessary tooling
run: |
# Remove unrelated tooling to open up more space. Without doing
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
steps:
- uses: actions/setup-go@v3
with:
go-version: 1.24
go-version: '1.25.6'
- uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.24
go-version: '1.25.6'

- name: Start 4 node docker cluster
run: make clean && DOCKER_DETACH=true INVARIANT_CHECK_INTERVAL=10 ${{matrix.test.env}} make docker-cluster-start
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/mock_balances_build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- uses: actions/checkout@v3
- uses: actions/setup-go@v3
with:
go-version: 1.24
go-version: '1.25.6'

- name: Build with Mock Balances
run: make install-mock-balances
2 changes: 1 addition & 1 deletion .github/workflows/rocksdb-unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ jobs:
steps:
- uses: actions/setup-go@v6
with:
go-version: '1.24'
go-version: '1.25.6'
- uses: actions/checkout@v5

- name: Install RocksDB dependencies
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
ARG SEICTL_VERSION=v0.0.5@sha256:268fc871e8358e706f505f0ce9ef318761e0d00d317716e9d87218734ae1a81c

FROM ghcr.io/sei-protocol/seictl:${SEICTL_VERSION} AS seictl
FROM docker.io/golang:1.24-bookworm@sha256:fc58bb98c4b7ebc8211c94df9dee40489e48363c69071bceca91aa59023b0dee AS builder
FROM docker.io/golang:1.25.6-bookworm@sha256:2f768d462dbffbb0f0b3a5171009f162945b086f326e0b2a8fd5d29c3219ff14 AS builder
WORKDIR /go/src/sei-chain

COPY sei-wasmd/x/wasm/artifacts/v152/api/*.so /tmp/wasmd-libs/
Expand Down
2 changes: 1 addition & 1 deletion docker/localnode/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:latest
ENV HOME="/root" PATH="/root/go/bin:/sei-protocol/sei-chain/integration_test/upgrade_module/scripts/:$PATH"
RUN apt-get update && apt-get install -y make build-essential git jq python3 curl vim uuid-runtime
RUN curl -L https://go.dev/dl/go1.24.5.linux-amd64.tar.gz | tar xvzf - -C /usr/local/
RUN curl -L https://go.dev/dl/go1.25.6.linux-amd64.tar.gz | tar xvzf - -C /usr/local/
RUN curl -L https://foundry.paradigm.xyz | bash
RUN curl -sL https://deb.nodesource.com/setup_16.x | bash
RUN /root/.foundry/bin/foundryup
Expand Down
2 changes: 1 addition & 1 deletion docker/rpcnode/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ FROM ubuntu:latest
ENV HOME="/root" PATH="/root/go/bin:$PATH"
RUN apt-get update && \
apt-get install -y make git build-essential jq python3 curl vim uuid-runtime
RUN curl -L https://go.dev/dl/go1.24.5.linux-amd64.tar.gz | tar xvzf - -C /usr/local/
RUN curl -L https://go.dev/dl/go1.25.6.linux-amd64.tar.gz | tar xvzf - -C /usr/local/
RUN mkdir -p /root/go/pkg/mod && \
mkdir -p /root/.cache && \
chmod -R a+rwX /root
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/sei-protocol/sei-chain

go 1.24.5
go 1.25.6

require (
github.com/BurntSushi/toml v1.4.0
Expand Down
2 changes: 1 addition & 1 deletion go.work
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
go 1.24.5
go 1.25.6

use (
.
Expand Down
2 changes: 1 addition & 1 deletion sei-cosmos/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/cosmos/cosmos-sdk

go 1.24.5
go 1.25.6

require (
cosmossdk.io/errors v1.0.0
Expand Down
2 changes: 1 addition & 1 deletion sei-tendermint/go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/tendermint/tendermint

go 1.24.5
go 1.25.6

require (
github.com/BurntSushi/toml v1.1.0
Expand Down
Loading