Skip to content

Commit e8ca7de

Browse files
authored
Merge pull request #36 from onflow/tarak/go1.25
go 1.25
2 parents d29d408 + ff0d87e commit e8ca7de

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@ on:
1111
- v[0-9]+.[0-9]+
1212

1313
env:
14-
GO_VERSION: "1.24"
15-
LINT_VERSION: "v2.0.2"
14+
GO_VERSION: "1.25"
15+
LINT_VERSION: "v2.4.0"
1616

1717
concurrency:
1818
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.run_id }}
@@ -37,15 +37,15 @@ jobs:
3737
- name: Run golangci-lint with cgo
3838
env:
3939
CGO_ENABLED: 1
40-
uses: golangci/golangci-lint-action@v7
40+
uses: golangci/golangci-lint-action@v8
4141
with:
4242
version: ${{ env.LINT_VERSION }}
4343
# https://github.com/golangci/golangci-lint-action/issues/244
4444
skip-cache: true
4545
- name: Run golangci-lint without cgo
4646
env:
4747
CGO_ENABLED: 0
48-
uses: golangci/golangci-lint-action@v7
48+
uses: golangci/golangci-lint-action@v8
4949
with:
5050
version: ${{ env.LINT_VERSION }}
5151
args: --build-tags no_cgo

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Notes:
1010

1111
## Module import
1212

13-
🚧 Flow cryptography package is written and tested for Go versions up to 1.24.
13+
🚧 Flow cryptography package is tested for Go version 1.25.
1414
It is recommended to not build the package with a later Go version.
1515
The package is not guaranteed to behave as expected with later Go versions. 🚧
1616

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/onflow/crypto
22

3-
go 1.24.1
3+
go 1.25.1
44

55
require (
66
github.com/btcsuite/btcd/btcec/v2 v2.3.4

0 commit comments

Comments
 (0)