-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #557 from oasisprotocol/mitjat/fix-imports--chainhash
Bump Go (1.21.3), golangci-lint (1.55.1)
- Loading branch information
Showing
16 changed files
with
152 additions
and
15 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,13 +41,19 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
go-version: 1.21.3 | ||
- name: Install Go tools | ||
run: go install github.com/deepmap/oapi-codegen/cmd/[email protected] | ||
- name: Build Go | ||
run: | | ||
make nexus | ||
make test-ci | ||
- name: Ensure dependencies are tidied up | ||
# NOTE: This should run _after_ the build step, so that oapi-codegen has already run | ||
# and generated the Go code that points to some of the dependencies. | ||
run: | | ||
go mod tidy -v -x -compat=1.21 # goreleaser does the same; can find lingering issues | ||
echo TIDY RESULTS START; git diff || true; echo TIDY RESULTS END | ||
- name: Upload to codecov.io | ||
uses: codecov/[email protected] | ||
with: | ||
|
@@ -87,7 +93,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
go-version: 1.21 | ||
- name: Autogenerate Go code | ||
run: | | ||
go install github.com/deepmap/oapi-codegen/cmd/[email protected] | ||
|
@@ -123,7 +129,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/setup-go@v3 | ||
with: | ||
go-version: 1.19 | ||
go-version: 1.21 | ||
- name: Autogenerate Go code | ||
run: | | ||
go install github.com/deepmap/oapi-codegen/cmd/[email protected] | ||
|
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 |
---|---|---|
|
@@ -19,7 +19,7 @@ jobs: | |
- name: Set up Go | ||
uses: actions/[email protected] | ||
with: | ||
go-version: 1.19 | ||
go-version: 1.21 | ||
- name: Install Go tools | ||
run: go install github.com/deepmap/oapi-codegen/cmd/[email protected] | ||
|
||
|
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
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 @@ | ||
FROM golang:1.19-bookworm AS oasis-core | ||
FROM golang:1.21-bookworm AS oasis-core | ||
|
||
ARG OASIS_CORE_VERSION=23.0.2 | ||
|
||
|
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 @@ | ||
FROM golang:1.19-bookworm AS oasis-node | ||
FROM golang:1.21-bookworm AS oasis-node | ||
|
||
ARG OASIS_CORE_VERSION=23.0.2 | ||
|
||
|
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
Oops, something went wrong.