From 41aa6f6753aed68eae6ef53a68e833e806467074 Mon Sep 17 00:00:00 2001 From: Alex Goodman Date: Wed, 10 Dec 2025 09:08:31 -0500 Subject: [PATCH] fix test fixture Signed-off-by: Alex Goodman --- .../executable/test-fixtures/toolchains/clang/Dockerfile | 2 +- syft/file/executable.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/syft/file/cataloger/executable/test-fixtures/toolchains/clang/Dockerfile b/syft/file/cataloger/executable/test-fixtures/toolchains/clang/Dockerfile index 8b91ab65f..67845790b 100644 --- a/syft/file/cataloger/executable/test-fixtures/toolchains/clang/Dockerfile +++ b/syft/file/cataloger/executable/test-fixtures/toolchains/clang/Dockerfile @@ -1 +1 @@ -FROM silkeh/clang:18.1.8 +FROM silkeh/clang:18@sha256:6984fdf656b270ff3129e339a25083e0f8355f681b72fdeb5407da21a9bbf74d diff --git a/syft/file/executable.go b/syft/file/executable.go index bab2f0dec..31fd11c70 100644 --- a/syft/file/executable.go +++ b/syft/file/executable.go @@ -47,7 +47,7 @@ type Executable struct { // Symbols []Symbol `json:"symbols,omitempty" yaml:"symbols" mapstructure:"symbols"` SymbolNames []string `json:"symbolNames,omitempty" yaml:"symbolNames" mapstructure:"symbolNames"` - // Toolchains captures information about the the compiler, linker, runtime, or other toolchains used to build (or otherwise exist within) the executable. + // Toolchains captures information about the compiler, linker, runtime, or other toolchains used to build (or otherwise exist within) the executable. Toolchains []Toolchain `json:"toolchains,omitempty" yaml:"toolchains" mapstructure:"toolchains"` }