Skip to content
Open
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/actions/bls/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ runs:
steps:
- uses: actions/setup-go@v2
with:
go-version: "1.25.7"
go-version: "1.26.1"
- uses: actions/checkout@v6
Comment on lines 16 to 19
Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

⚠️ Potential issue | 🟡 Minor

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
# Verify all setup-go action versions used in repository workflows/actions
rg -nP 'uses:\s*actions/setup-go@' .github

Repository: dashpay/tenderdash

Length of output: 767


Upgrade actions/setup-go to align with other workflows.

Line 16 uses actions/setup-go@v2 while all other workflows use @v6.3.0. Standardizing on the same major version prevents CI setup drift.

♻️ Proposed update
-    - uses: actions/setup-go@v2
+    - uses: actions/setup-go@v6.3.0
📝 Committable suggestion

‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.

Suggested change
- uses: actions/setup-go@v2
with:
go-version: "1.25.7"
go-version: "1.26.1"
- uses: actions/checkout@v6
- uses: actions/setup-go@v6.3.0
with:
go-version: "1.26.1"
- uses: actions/checkout@v6
🤖 Prompt for AI Agents
Verify each finding against the current code and only fix it if needed.

In @.github/actions/bls/action.yml around lines 16 - 19, Update the GitHub
Action step that currently reads "uses: actions/setup-go@v2" to match other
workflows by using the newer release tag (e.g., "actions/setup-go@v6.3.0"); keep
the existing "with: go-version: \"1.26.1\"" input unchanged and ensure the
surrounding step (the "uses: actions/checkout@v6" step) remains intact so the
job configuration stays consistent.

with:
submodules: true
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/setup-go@v6.3.0
with:
go-version: "1.25.7"
go-version: "1.26.1"
- uses: actions/checkout@v6
- uses: technote-space/get-diff-action@v6
with:
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
steps:
- uses: actions/setup-go@v6.3.0
with:
go-version: "1.25.7"
go-version: "1.26.1"
- uses: actions/checkout@v6
- uses: technote-space/get-diff-action@v6
with:
Expand All @@ -79,7 +79,7 @@ jobs:
steps:
- uses: actions/setup-go@v6.3.0
with:
go-version: "1.25.7"
go-version: "1.26.1"
- uses: actions/checkout@v6
- uses: technote-space/get-diff-action@v6
with:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/check-generated.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/setup-go@v6.3.0
with:
go-version: "1.25.7"
go-version: "1.26.1"

- uses: actions/checkout@v6

Expand Down Expand Up @@ -55,7 +55,7 @@ jobs:
steps:
- uses: actions/setup-go@v6.3.0
with:
go-version: "1.25.7"
go-version: "1.26.1"

- uses: actions/checkout@v6

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/e2e.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
steps:
- uses: actions/setup-go@v6.3.0
with:
go-version: "1.25.7"
go-version: "1.26.1"

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4.0.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
- uses: actions/setup-go@v6.3.0
if: env.GIT_DIFF
with:
go-version: "^1.25.7"
go-version: "^1.26.1"

- name: Install dependencies
if: env.GIT_DIFF
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-go@v6.3.0
with:
go-version: "1.25.7"
go-version: "1.26.1"

- name: Build
uses: goreleaser/goreleaser-action@v7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
- uses: actions/setup-go@v6.3.0
if: env.GIT_DIFF
with:
go-version: "1.25.7"
go-version: "1.26.1"

- name: Install libpcap
if: env.GIT_DIFF
Expand Down
2 changes: 1 addition & 1 deletion DOCKER/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# * image - creates final image of minimal size

ARG ALPINE_VERSION=3.23
ARG GOLANG_VERSION=1.25.7
ARG GOLANG_VERSION=1.26.1
#################################
# STAGE 1: install dependencies #
#################################
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ requirements if installing from source.

| Requirement | Notes |
| ----------- | ------------------ |
| Go version | Go1.25.7 or higher |
| Go version | Go1.26.1 or higher |

## Versioning

Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/go-built-in.md
Original file line number Diff line number Diff line change
Expand Up @@ -596,7 +596,7 @@ This will populate the `go.mod` with a release number followed by a hash for Ten
```go
module github.com/<username>/kvstore

go 1.25.7
go 1.26.1

require (
github.com/dgraph-io/badger/v3 v3.2103.2
Expand Down
2 changes: 1 addition & 1 deletion docs/tutorials/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ This will populate the `go.mod` with a release number followed by a hash for Ten
```go
module github.com/<username>/kvstore

go 1.25.7
go 1.26.1

require (
github.com/dgraph-io/badger/v3 v3.2103.2
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/dashpay/tenderdash

go 1.25.7
go 1.26.1

require (
github.com/BurntSushi/toml v1.6.0
Expand Down
2 changes: 1 addition & 1 deletion test/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM golang:1.25.7
FROM golang:1.26.1

# Grab deps (jq, hexdump, xxd, killall)
RUN apt-get update && \
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/docker/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
## Stage 1 and 2 is copied from /DOCKER/Dockerfile
ARG ALIPNE_VERSION=3.23
ARG GOLANG_VERSION=1.25.7
ARG GOLANG_VERSION=1.26.1
#################################
# STAGE 1: install dependencies #
#################################
Expand Down
2 changes: 1 addition & 1 deletion test/fuzz/README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# fuzz

Fuzzing for various packages in Tendermint using the fuzzing infrastructure included in
Go 1.25.7.
Go 1.26.1.

Inputs:

Expand Down
Loading