-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
all: upgrade go version from 1.22 to 1.23 (#50)
upgrade go version from 1.22 to 1.23.2
- Loading branch information
1 parent
c887ff0
commit 9c0deac
Showing
3 changed files
with
8 additions
and
8 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,12 +16,12 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
go-version: "1.23.2" | ||
|
||
- name: golangci-lint | ||
uses: golangci/golangci-lint-action@v4 | ||
with: | ||
version: v1.58 | ||
version: v1.61 | ||
args: --timeout=5m | ||
|
||
- name: ./gomod.sh | ||
|
@@ -32,9 +32,9 @@ jobs: | |
go install github.com/nishanths/exhaustive/cmd/[email protected] | ||
exhaustive -default-signifies-exhaustive ./... | ||
- name: deadcode golang.org/x/tools/cmd/deadcode@v0.21.0 | ||
- name: deadcode golang.org/x/tools/cmd/deadcode@v0.26.0 | ||
run: | | ||
go install golang.org/x/tools/cmd/deadcode@v0.21.0 | ||
go install golang.org/x/tools/cmd/deadcode@v0.26.0 | ||
output=$(deadcode -test ./...) | ||
if [[ -n "$output" ]]; then | ||
echo "🚨 Deadcode found:" | ||
|
@@ -53,7 +53,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
go-version: "1.23.2" | ||
|
||
- name: Build Project | ||
run: go build ./... | ||
|
@@ -90,7 +90,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "1.22" | ||
go-version: "1.23.2" | ||
|
||
- name: Run Tests | ||
run: go test -v -race -cover ./... |
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,6 +1,6 @@ | ||
module github.com/stellar/wallet-backend | ||
|
||
go 1.22.0 | ||
go 1.23.2 | ||
|
||
require ( | ||
github.com/aws/aws-sdk-go v1.45.26 | ||
|