mirror of
https://github.com/anchore/syft.git
synced 2025-11-17 08:23:15 +01:00
chore(deps): update tools to latest versions (#3121)
* chore(deps): update tools to latest versions Signed-off-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com> * chore: update code to reflect new linter settings for error messages Signed-off-by: Christopher Phillips <32073428+spiffcs@users.noreply.github.com> --------- 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>
This commit is contained in:
parent
4ff60ee837
commit
4b7ae0ed3b
@ -26,7 +26,7 @@ tools:
|
|||||||
# used for linting
|
# used for linting
|
||||||
- name: golangci-lint
|
- name: golangci-lint
|
||||||
version:
|
version:
|
||||||
want: v1.59.1
|
want: v1.60.1
|
||||||
method: github-release
|
method: github-release
|
||||||
with:
|
with:
|
||||||
repo: golangci/golangci-lint
|
repo: golangci/golangci-lint
|
||||||
@ -58,7 +58,7 @@ tools:
|
|||||||
# used to release all artifacts
|
# used to release all artifacts
|
||||||
- name: goreleaser
|
- name: goreleaser
|
||||||
version:
|
version:
|
||||||
want: v2.1.0
|
want: v2.2.0
|
||||||
method: github-release
|
method: github-release
|
||||||
with:
|
with:
|
||||||
repo: goreleaser/goreleaser
|
repo: goreleaser/goreleaser
|
||||||
|
|||||||
@ -161,7 +161,7 @@ func validateArgs(cmd *cobra.Command, args []string, error string) error {
|
|||||||
if err := cmd.Help(); err != nil {
|
if err := cmd.Help(); err != nil {
|
||||||
return fmt.Errorf("unable to display help: %w", err)
|
return fmt.Errorf("unable to display help: %w", err)
|
||||||
}
|
}
|
||||||
return fmt.Errorf(error)
|
return fmt.Errorf("%v", error)
|
||||||
}
|
}
|
||||||
|
|
||||||
return cobra.MaximumNArgs(1)(cmd, args)
|
return cobra.MaximumNArgs(1)(cmd, args)
|
||||||
|
|||||||
2
internal/cache/error_resolver.go
vendored
2
internal/cache/error_resolver.go
vendored
@ -34,7 +34,7 @@ func (r *errorResolver[T]) Resolve(key string, resolver resolverFunc[T]) (T, err
|
|||||||
return v.Value, err
|
return v.Value, err
|
||||||
}
|
}
|
||||||
if v.Error != "" {
|
if v.Error != "" {
|
||||||
return v.Value, fmt.Errorf(v.Error)
|
return v.Value, fmt.Errorf("failed to resolve cache: %s", v.Error)
|
||||||
}
|
}
|
||||||
return v.Value, nil
|
return v.Value, nil
|
||||||
}
|
}
|
||||||
|
|||||||
@ -78,7 +78,8 @@ func findMetadataDefinitionNames(paths ...string) ([]string, error) {
|
|||||||
// note: 35 is a point-in-time gut check. This number could be updated if new metadata definitions are added, but is not required.
|
// note: 35 is a point-in-time gut check. This number could be updated if new metadata definitions are added, but is not required.
|
||||||
// it is really intended to catch any major issues with the generation process that would generate, say, 0 definitions.
|
// it is really intended to catch any major issues with the generation process that would generate, say, 0 definitions.
|
||||||
if len(strNames) < 35 {
|
if len(strNames) < 35 {
|
||||||
return nil, fmt.Errorf("not enough metadata definitions found (discovered: " + fmt.Sprintf("%d", len(strNames)) + ")")
|
msg := fmt.Sprintf("not enough metadata definitions found (discovered %d)", len(strNames))
|
||||||
|
return nil, fmt.Errorf("%v", msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
return strNames, nil
|
return strNames, nil
|
||||||
|
|||||||
@ -68,7 +68,8 @@ func findMetadataDefinitionNames(paths ...string) ([]string, error) {
|
|||||||
// note: 3 is a point-in-time gut check. This number could be updated if new metadata definitions are added, but is not required.
|
// note: 3 is a point-in-time gut check. This number could be updated if new metadata definitions are added, but is not required.
|
||||||
// it is really intended to catch any major issues with the generation process that would generate, say, 0 definitions.
|
// it is really intended to catch any major issues with the generation process that would generate, say, 0 definitions.
|
||||||
if len(strNames) < 3 {
|
if len(strNames) < 3 {
|
||||||
return nil, fmt.Errorf("not enough metadata definitions found (discovered: " + fmt.Sprintf("%d", len(strNames)) + ")")
|
msg := fmt.Sprintf("not enough metadata definitions found (discovered %d)", len(strNames))
|
||||||
|
return nil, fmt.Errorf("%v", msg)
|
||||||
}
|
}
|
||||||
|
|
||||||
return strNames, nil
|
return strNames, nil
|
||||||
|
|||||||
@ -24,7 +24,7 @@ func parseConanfile(_ context.Context, _ file.Resolver, _ *generic.Environment,
|
|||||||
for {
|
for {
|
||||||
line, err := r.ReadString('\n')
|
line, err := r.ReadString('\n')
|
||||||
switch {
|
switch {
|
||||||
case errors.Is(io.EOF, err):
|
case errors.Is(err, io.EOF):
|
||||||
return pkgs, nil, nil
|
return pkgs, nil, nil
|
||||||
case err != nil:
|
case err != nil:
|
||||||
return nil, nil, fmt.Errorf("failed to parse conanfile.txt file: %w", err)
|
return nil, nil, fmt.Errorf("failed to parse conanfile.txt file: %w", err)
|
||||||
|
|||||||
@ -99,7 +99,7 @@ func parseConaninfo(_ context.Context, _ file.Resolver, _ *generic.Environment,
|
|||||||
for {
|
for {
|
||||||
line, err := r.ReadString('\n')
|
line, err := r.ReadString('\n')
|
||||||
switch {
|
switch {
|
||||||
case errors.Is(io.EOF, err):
|
case errors.Is(err, io.EOF):
|
||||||
mainPackage := newConaninfoPackage(
|
mainPackage := newConaninfoPackage(
|
||||||
mainMetadata,
|
mainMetadata,
|
||||||
reader.Location.WithAnnotation(pkg.EvidenceAnnotationKey, pkg.PrimaryEvidenceAnnotation),
|
reader.Location.WithAnnotation(pkg.EvidenceAnnotationKey, pkg.PrimaryEvidenceAnnotation),
|
||||||
|
|||||||
@ -28,7 +28,7 @@ func parseMixLock(_ context.Context, _ file.Resolver, _ *generic.Environment, re
|
|||||||
for {
|
for {
|
||||||
line, err := r.ReadString('\n')
|
line, err := r.ReadString('\n')
|
||||||
switch {
|
switch {
|
||||||
case errors.Is(io.EOF, err):
|
case errors.Is(err, io.EOF):
|
||||||
return packages, nil, nil
|
return packages, nil, nil
|
||||||
case err != nil:
|
case err != nil:
|
||||||
return nil, nil, fmt.Errorf("failed to parse mix.lock file: %w", err)
|
return nil, nil, fmt.Errorf("failed to parse mix.lock file: %w", err)
|
||||||
|
|||||||
@ -23,7 +23,7 @@ func parseCabalFreeze(_ context.Context, _ file.Resolver, _ *generic.Environment
|
|||||||
for {
|
for {
|
||||||
line, err := r.ReadString('\n')
|
line, err := r.ReadString('\n')
|
||||||
switch {
|
switch {
|
||||||
case errors.Is(io.EOF, err):
|
case errors.Is(err, io.EOF):
|
||||||
return pkgs, nil, nil
|
return pkgs, nil, nil
|
||||||
case err != nil:
|
case err != nil:
|
||||||
return nil, nil, fmt.Errorf("failed to parse cabal.project.freeze file: %w", err)
|
return nil, nil, fmt.Errorf("failed to parse cabal.project.freeze file: %w", err)
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user