Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .go-version
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.23.6
1.24.4
28 changes: 17 additions & 11 deletions .release/security-scan.hcl
Original file line number Diff line number Diff line change
@@ -1,16 +1,22 @@
# Copyright (c) HashiCorp, Inc.
# SPDX-License-Identifier: MPL-2.0

container {
dependencies = true
alpine_secdb = true
secrets = true
binary {
go_stdlib = true // Scan the Go standard library used to build the binary.
go_modules = true // Scan the Go modules included in the binary.
osv = true // Use the OSV vulnerability database.
oss_index = true // And use OSS Index vulnerability database.

secrets {
all = true
}
}

binary {
secrets = true
go_modules = true
osv = true
oss_index = false
nvd = false
}
container {
dependencies = true // Scan any installed packages for vulnerabilities.
osv = true // Use the OSV vulnerability database.

secrets {
all = true
}
}
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
## Unreleased

Changes:
* Building with Go 1.24.4

## 1.6.2 (February 26, 2025)

Changes:
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ module github.com/hashicorp/vault-k8s

go 1.24.0

toolchain go1.24.1
toolchain go1.24.4

require (
github.com/cenkalti/backoff/v4 v4.3.0
Expand Down
Loading