Skip to content
Merged
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 .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ version: '2'

run:
timeout: 5m
go: '1.25'
go: '1.26'

linters:
default: standard
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/robbyt/go-polyscript

go 1.25.7
go 1.26.2
Copy link

Copilot AI Apr 9, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The module Go version is bumped to 1.26.2, but .golangci.yml still pins run.go: '1.25'. This can cause golangci-lint to analyze with an older language version than the module (and may fail if the code adopts 1.26-only features). Update .golangci.yml to match the new minimum Go version (or remove the pin if you want it to follow the toolchain).

Copilot uses AI. Check for mistakes.
Copy link
Copy Markdown
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@copilot apply changes based on this feedback

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Updated .golangci.yml run.go from '1.25' to '1.26' in commit 7bfe949.


require (
github.com/extism/go-sdk v1.7.1
Expand Down
Loading