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 default golangci-lint output (`text`).
414
+
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`).
416
415
417
416
Works only with `colored-line-number` (the golangci-lint default).
418
417
@@ -424,7 +423,7 @@ The default value is `false`.
424
423
<summary>Example</summary>
425
424
426
425
```yml
427
-
uses: golangci/golangci-lint-action@v7
426
+
uses: golangci/golangci-lint-action@v6
428
427
with:
429
428
problem-matchers: true
430
429
# ...
@@ -445,7 +444,7 @@ The default value is `false`.
445
444
<summary>Example</summary>
446
445
447
446
```yml
448
-
uses: golangci/golangci-lint-action@v7
447
+
uses: golangci/golangci-lint-action@v6
449
448
with:
450
449
skip-cache: true
451
450
# ...
@@ -465,7 +464,7 @@ The default value is `false`.
465
464
<summary>Example</summary>
466
465
467
466
```yml
468
-
uses: golangci/golangci-lint-action@v7
467
+
uses: golangci/golangci-lint-action@v6
469
468
with:
470
469
skip-save-cache: true
471
470
# ...
@@ -487,7 +486,7 @@ If set the number is `<= 0`, the cache will be always invalidate (Not recommende
487
486
<summary>Example</summary>
488
487
489
488
```yml
490
-
uses: golangci/golangci-lint-action@v7
489
+
uses: golangci/golangci-lint-action@v6
491
490
with:
492
491
cache-invalidation-interval: 15
493
492
# ...
@@ -516,7 +515,7 @@ permissions:
516
515
pull-requests: read
517
516
```
518
517
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).
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).
0 commit comments