Skip to content

Commit ef30f93

Browse files
[SECCOMP-33436] fix vulnerabilities
1 parent 16e30d3 commit ef30f93

File tree

6 files changed

+28
-693
lines changed

6 files changed

+28
-693
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Setup Go
2121
uses: actions/setup-go@v5.3.0
2222
with:
23-
go-version: 1.23.6
23+
go-version: 1.23.10
2424
- name: Checkout code
2525
uses: actions/checkout@v4.2.2
2626
- name: Run unit tests

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6 AS builder
1+
FROM golang:1.23.10 AS builder
22

33
ENV OUTPUT_DIR=/out
44

Dockerfile_linux_arm64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6 AS builder
1+
FROM golang:1.23.10 AS builder
22

33
ENV OUTPUT_DIR=/out
44

Dockerfile_linux_s390x

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM golang:1.23.6 AS builder
1+
FROM golang:1.23.10 AS builder
22

33
ENV OUTPUT_DIR=/out
44

go.mod

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module github.com/aquasecurity/linux-bench
22

3-
go 1.23.6
3+
go 1.23.10
44

55
require (
66
github.com/aquasecurity/bench-common v0.4.8
@@ -14,25 +14,19 @@ require (
1414
github.com/fsnotify/fsnotify v1.8.0 // indirect
1515
github.com/hashicorp/hcl v1.0.0 // indirect
1616
github.com/inconshreveable/mousetrap v1.1.0 // indirect
17-
github.com/jinzhu/gorm v1.9.16 // indirect
18-
github.com/jinzhu/inflection v1.0.0 // indirect
1917
github.com/magiconair/properties v1.8.9 // indirect
2018
github.com/mattn/go-colorable v0.1.14 // indirect
2119
github.com/mattn/go-isatty v0.0.20 // indirect
22-
github.com/mitchellh/go-homedir v1.1.0 // indirect
2320
github.com/mitchellh/mapstructure v1.5.0 // indirect
2421
github.com/onsi/ginkgo v1.16.5 // indirect
25-
github.com/pelletier/go-toml v1.2.0 // indirect
2622
github.com/pelletier/go-toml/v2 v2.2.3 // indirect
2723
github.com/sagikazarmark/locafero v0.7.0 // indirect
2824
github.com/sagikazarmark/slog-shim v0.1.0 // indirect
2925
github.com/sourcegraph/conc v0.3.0 // indirect
3026
github.com/spf13/afero v1.12.0 // indirect
3127
github.com/spf13/cast v1.7.1 // indirect
32-
github.com/spf13/jwalterweatherman v1.1.0 // indirect
3328
github.com/spf13/pflag v1.0.6 // indirect
3429
github.com/subosito/gotenv v1.6.0 // indirect
35-
go.uber.org/atomic v1.11.0 // indirect
3630
go.uber.org/multierr v1.11.0 // indirect
3731
go.uber.org/zap v1.27.0 // indirect
3832
golang.org/x/exp v0.0.0-20250218142911-aa4b98e5adaa // indirect

0 commit comments

Comments
 (0)