Skip to content
Draft
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/ci-pr.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
name: Set up Go
uses: actions/setup-go@924ae3a1cded613372ab5595356fb5720e22ba16 #v6.5.0
with:
go-version: '1.24.2'
go-version: '1.26.5'
cache-dependency-path: go/src/github.com/harmony-one/harmony/go.sum

- name: Build harmony
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

ARG TARGETARCH
ARG GOLANG_VERSION="1.24.2"
ARG GOLANG_VERSION="1.26.5"

SHELL ["/bin/bash", "-c"]

Expand Down
3 changes: 1 addition & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ http://api.hmny.io/

## Requirements

### **Go 1.24.2**
### **Go 1.26.5**
### **GMP and OpenSSL**

On macOS:
Expand Down Expand Up @@ -276,4 +276,3 @@ See [`CONTRIBUTING`](CONTRIBUTING.md) for details.
- Integration with WASM
- Fast state synchronization
- Auditable privacy asset using ZK proof

2 changes: 1 addition & 1 deletion Test.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24
FROM golang:1.26.5

ARG ENV=dev

Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.24.2-bullseye
FROM golang:1.26.5-bullseye

# hadolint ignore=DL3008
RUN apt-get update > /dev/null 2>&1 && \
Expand Down
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/harmony-one/harmony

go 1.24.0
go 1.26.0

toolchain go1.24.2
toolchain go1.26.5

require (
github.com/RoaringBitmap/roaring v1.2.3
Expand Down
2 changes: 1 addition & 1 deletion rosetta/infra/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build
FROM golang:1.24.2 AS build
FROM golang:1.26.5 AS build

RUN apt update -y && \
apt install libgmp-dev libssl-dev git -y && \
Expand Down
3 changes: 1 addition & 2 deletions scripts/macos_docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
FROM ubuntu:22.04

ARG TARGETARCH
ARG GOLANG_VERSION="1.22.5"
ARG GOLANG_VERSION="1.26.5"

SHELL ["/bin/bash", "-c"]

Expand Down Expand Up @@ -61,4 +61,3 @@ RUN . ~/.bash_profile; \
go install github.com/stamblerre/gocode; \
go install golang.org/x/tools/...; \
go install honnef.co/go/tools/cmd/staticcheck/...