Skip to content

Commit 8a2fdcc

Browse files
authored
Merge branch 'master' into Support-audit-shell-script
2 parents 3b76409 + 400fb43 commit 8a2fdcc

File tree

3 files changed

+192
-20
lines changed

3 files changed

+192
-20
lines changed

.goreleaser.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,18 @@ builds:
88
- linux
99
goarch:
1010
- amd64
11+
- arm
12+
- arm64
13+
goarm:
14+
- 6
15+
- 7
1116
ldflags:
1217
- "-X github.com/aquasecurity/linux-bench/root.cfgDir={{.Env.LINUXBENCH_CFG}}"
1318
# Archive customization
1419
archives:
1520
- id: compress
1621
format: tar.gz
22+
name_template: '{{ .Binary }}_{{.Version}}_{{ .Os }}_{{ .Arch }}{{ if .Arm }}v{{.Arm }}{{ end }}'
1723
files:
1824
- "cfg/**/*"
1925
nfpms:

go.mod

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

3-
go 1.12
3+
go 1.13
44

55
require (
66
github.com/aquasecurity/bench-common v0.4.4
77
github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b
8-
github.com/spf13/cobra v0.0.5
9-
github.com/spf13/viper v1.4.0
8+
github.com/spf13/cobra v1.1.1
9+
github.com/spf13/viper v1.7.1
1010
)

0 commit comments

Comments
 (0)