Skip to content
Closed
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/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- uses: technote-space/get-diff-action@v5
id: git_diff
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dry-run-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
check-latest: true
- name: Pull LFS files
run: git lfs pull
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
check-latest: true
- name: Pull LFS files
run: git lfs pull
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- uses: actions/checkout@v4
- uses: technote-space/get-diff-action@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/snyk.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ jobs:
- uses: snyk/actions/setup@master
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- name: Snyk monitor
run: snyk code test
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
steps:
- uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- name: Display Go Version
run: go version
- name: Install tparse
Expand All @@ -37,7 +37,7 @@ jobs:
- name: Set up go
uses: actions/setup-go@v5
with:
go-version: '1.23.10'
go-version: '1.24.10'
- name: Checkout source
uses: actions/checkout@v4
- name: Generate LFS file list
Expand Down
6 changes: 5 additions & 1 deletion .golangci.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: "2"
run:
concurrency: 4
go: "1.23"
go: "1.24"
tests: true
issues:
max-issues-per-linter: 100
Expand Down Expand Up @@ -63,6 +63,10 @@ linters:
- path: _test\.go
linters:
- dupl
- path: (^|.*/)(utils|types|common)/
linters:
- revive
text: "var-naming: avoid meaningless package names"
formatters:
enable:
- gofumpt
Expand Down
2 changes: 1 addition & 1 deletion .snyk
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
version: v1.25.0
language-settings:
go: "1.23.10"
go: "1.24.10"
exclude:
global:
- client/export.go
Expand Down
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ DIFF_TAG=$(shell git rev-list --tags="v*" --max-count=1 --not $(shell git rev-li
DEFAULT_TAG=$(shell git rev-list --tags="v*" --max-count=1)
# VERSION ?= $(shell echo $(shell git describe --tags $(or $(DIFF_TAG), $(DEFAULT_TAG))) | sed 's/^v//')

VERSION := "1.9.1"
VERSION := "1.9.2"
CBFTVERSION := $(shell go list -m github.com/cometbft/cometbft | sed 's:.* ::')
COMMIT := $(shell git log -1 --format='%H')
LEDGER_ENABLED ?= true
Expand Down Expand Up @@ -519,7 +519,7 @@ proto-check-breaking:
###############################################################################

PACKAGE_NAME:=github.com/haqq-network/haqq
GOLANG_CROSS_VERSION = v1.22
GOLANG_CROSS_VERSION = v1.23
GOPATH ?= '$(HOME)/go'
release-dry-run:
docker run \
Expand Down
Loading
Loading