You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, the [problem matcher of Go (`actions/setup-go`)](https://github.com/actions/setup-go/blob/main/matchers.json) already handles the golangci-lint output (`colored-line-number`).
415
+
By default, the [problem matcher of Go (`actions/setup-go`)](https://github.com/actions/setup-go/blob/main/matchers.json) already handles the default golangci-lint output (`text`).
415
416
416
417
Works only with `colored-line-number` (the golangci-lint default).
417
418
@@ -423,7 +424,7 @@ The default value is `false`.
423
424
<summary>Example</summary>
424
425
425
426
```yml
426
-
uses: golangci/golangci-lint-action@v6
427
+
uses: golangci/golangci-lint-action@v7
427
428
with:
428
429
problem-matchers: true
429
430
# ...
@@ -444,7 +445,7 @@ The default value is `false`.
444
445
<summary>Example</summary>
445
446
446
447
```yml
447
-
uses: golangci/golangci-lint-action@v6
448
+
uses: golangci/golangci-lint-action@v7
448
449
with:
449
450
skip-cache: true
450
451
# ...
@@ -464,7 +465,7 @@ The default value is `false`.
464
465
<summary>Example</summary>
465
466
466
467
```yml
467
-
uses: golangci/golangci-lint-action@v6
468
+
uses: golangci/golangci-lint-action@v7
468
469
with:
469
470
skip-save-cache: true
470
471
# ...
@@ -486,7 +487,7 @@ If set the number is `<= 0`, the cache will be always invalidate (Not recommende
486
487
<summary>Example</summary>
487
488
488
489
```yml
489
-
uses: golangci/golangci-lint-action@v6
490
+
uses: golangci/golangci-lint-action@v7
490
491
with:
491
492
cache-invalidation-interval: 15
492
493
# ...
@@ -515,7 +516,7 @@ permissions:
515
516
pull-requests: read
516
517
```
517
518
518
-
For annotations to work use the default `colored-line-number` output and either use `actions/setup-go` in the job or enable the internal [problem matchers](#problem-matchers).
519
+
For annotations to work use the default format output (`text`) and either use `actions/setup-go` in the job or enable the internal [problem matchers](#problem-matchers).
0 commit comments