From 60ca2415930498253c4c41421a178488bb5a7af8 Mon Sep 17 00:00:00 2001 From: "anchore-actions-token-generator[bot]" <102182147+anchore-actions-token-generator[bot]@users.noreply.github.com> Date: Fri, 7 Nov 2025 20:56:44 +0000 Subject: [PATCH] chore(deps): update tools to latest versions (#4347) * chore: new tool checks --------- Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com> Co-authored-by: spiffcs <32073428+spiffcs@users.noreply.github.com> --- .binny.yaml | 4 ++-- syft/source/directorysource/directory_source_win_test.go | 1 - 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/.binny.yaml b/.binny.yaml index 8f6c6afa5..69d9d3edd 100644 --- a/.binny.yaml +++ b/.binny.yaml @@ -26,7 +26,7 @@ tools: # used for linting - name: golangci-lint version: - want: v2.5.0 + want: v2.6.1 method: github-release with: repo: golangci/golangci-lint @@ -98,7 +98,7 @@ tools: # used for triggering a release - name: gh version: - want: v2.82.1 + want: v2.83.0 method: github-release with: repo: cli/cli diff --git a/syft/source/directorysource/directory_source_win_test.go b/syft/source/directorysource/directory_source_win_test.go index b0d1d2e06..8f99a59d3 100644 --- a/syft/source/directorysource/directory_source_win_test.go +++ b/syft/source/directorysource/directory_source_win_test.go @@ -1,5 +1,4 @@ //go:build windows -// +build windows // why the build tags? there is behavior from filepath.ToSlash() that must be tested, but can't be tested on non-windows // since the stdlib keeps this functionality behind a build tag (specifically filepath.Separator):