Skip to content

Commit 90c6cd9

Browse files
committed
chore: bump Go
Signed-off-by: Joseph Kato <joseph@jdkato.io>
1 parent 10a8e86 commit 90c6cd9

2 files changed

Lines changed: 10 additions & 10 deletions

File tree

.github/workflows/golangci-lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
- uses: actions/checkout@v5
1919
- uses: actions/setup-go@v6
2020
with:
21-
go-version: "1.25.3"
21+
go-version: "1.25.7"
2222
- name: golangci-lint
2323
uses: golangci/golangci-lint-action@v8
2424
with:

internal/core/alert.go

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -18,15 +18,15 @@ type Action struct {
1818

1919
// An Alert represents a potential error in prose.
2020
type Alert struct {
21-
Action Action // a possible solution
22-
Span []int // the [begin, end] location within a line
23-
Offset []string `json:"-"` // tokens to ignore before this match
24-
Check string // the name of the check
25-
Description string // why `Message` is meaningful
26-
Link string // reference material
27-
Message string // the output message
28-
Severity string // 'suggestion', 'warning', or 'error'
29-
Match string // the actual matched text
21+
Action Action // a possible solution
22+
Span []int // the [begin, end] location within a line
23+
Offset []string `json:"-"` // tokens to ignore before this match
24+
Check string // the name of the check
25+
Description string // why `Message` is meaningful
26+
Link string // reference material
27+
Message string // the output message
28+
Severity string // 'suggestion', 'warning', or 'error'
29+
Match string // the actual matched text
3030
Line int // the source line
3131
Limit int `json:"-"` // the max times to report
3232
Hide bool `json:"-"` // should we hide this alert?

0 commit comments

Comments
 (0)