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 .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}

- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
uses: goreleaser/goreleaser-action@v7
with:
version: latest
args: release --clean
Expand Down
2 changes: 2 additions & 0 deletions .golangci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ linters:
gosec:
excludes:
- G104 # Errors not checked, handled by errcheck
- G704 # Taint analysis false positive
- G705 # Taint analysis false positive

govet:
enable-all: true
Expand Down
2 changes: 1 addition & 1 deletion internal/dead/dead.go
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ func (d Dead) Check(ctx context.Context, options CheckOptions) error {
}
results := collect(ctx, workers...)

var sorted []CheckResult //nolint:prealloc // It's channels so we don't actually know
var sorted []CheckResult
for result := range results {
sorted = append(sorted, result)
}
Expand Down
Loading