-
Notifications
You must be signed in to change notification settings - Fork 97
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
112 additions
and
57 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,23 +6,23 @@ jobs: | |
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out code into the Go module directory | ||
uses: actions/checkout@v3.5.3 | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # required for new-from-rev option in .golangci.yml | ||
- name: Install specific golang | ||
uses: actions/setup-go@v4.0.1 | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: '1.21.10' | ||
go-version: '1.23.3' | ||
- name: Check format | ||
run: test -z `go fmt ./...` | ||
- name: Vet | ||
run: go vet ./... | ||
- name: reviewdog-golangci-lint | ||
uses: reviewdog/[email protected].1 | ||
uses: reviewdog/[email protected].2 | ||
with: | ||
golangci_lint_version: "v1.58.0" | ||
golangci_lint_version: "v1.62.0" | ||
golangci_lint_flags: "-c .golangci.yml --allow-parallel-runners" | ||
go_version: "1.21.10" | ||
go_version: "1.23.3" | ||
reporter: "github-pr-review" | ||
tool_name: "Lint Errors" | ||
level: "error" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,27 @@ | ||
module github.com/algorand/go-algorand-sdk/v2 | ||
|
||
go 1.21 | ||
go 1.23 | ||
|
||
toolchain go1.21.10 | ||
toolchain go1.23.3 | ||
|
||
require ( | ||
github.com/algorand/avm-abi v0.1.1 | ||
github.com/algorand/avm-abi v0.2.0 | ||
github.com/algorand/go-codec/codec v1.1.10 | ||
github.com/cucumber/godog v0.8.1 | ||
github.com/google/go-querystring v1.0.0 | ||
github.com/stretchr/testify v1.7.1 | ||
golang.org/x/crypto v0.17.0 | ||
github.com/cucumber/godog v0.14.1 | ||
github.com/google/go-querystring v1.1.0 | ||
github.com/stretchr/testify v1.9.0 | ||
golang.org/x/crypto v0.29.0 | ||
) | ||
|
||
require ( | ||
github.com/cucumber/gherkin/go/v26 v26.2.0 // indirect | ||
github.com/cucumber/messages/go/v21 v21.0.1 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/gofrs/uuid v4.3.1+incompatible // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect | ||
github.com/hashicorp/go-memdb v1.3.4 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.0 // indirect | ||
github.com/spf13/pflag v1.0.5 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
ARG GO_IMAGE=golang:1.21.10 | ||
ARG GO_IMAGE=golang:1.23.3 | ||
FROM $GO_IMAGE | ||
|
||
# Copy SDK code into the container | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters