File tree Expand file tree Collapse file tree 2 files changed +33
-1
lines changed
Expand file tree Collapse file tree 2 files changed +33
-1
lines changed Original file line number Diff line number Diff line change 1+ # .github/dependabot.yml
2+ # Documentation: https://docs.github.com/en/code-security/supply-chain-security/keeping-your-dependencies-updated-automatically/configuration-options-for-dependency-updates
3+ version : 2
4+ updates :
5+
6+ # GitHub Actions workflows
7+ - package-ecosystem : " github-actions"
8+ directory : " /"
9+ schedule :
10+ interval : " weekly"
11+ day : " monday"
12+ commit-message :
13+ prefix : " :seedling:"
14+ labels :
15+ - " github-actions"
16+
17+ # Go modules
18+ - package-ecosystem : " gomod"
19+ directory : " /"
20+ schedule :
21+ interval : " weekly"
22+ day : " monday"
23+ commit-message :
24+ prefix : " :seedling:"
25+ labels :
26+ - " dependencies"
27+ groups :
28+ kubernetes :
29+ patterns :
30+ - " k8s.io/*"
31+
Original file line number Diff line number Diff line change @@ -31,7 +31,8 @@ IMAGE_BRANCH=$(git rev-parse --abbrev-ref HEAD | sed 's/\///g')
3131GIT_REF_LONG=$( git rev-parse --verify HEAD)
3232
3333BUILDMNT=/go/src/$GOTARGET
34- BUILD_IMAGE=golang:1.23.8
34+ GO_VERSION=$( go env GOVERSION | sed ' s/go//' )
35+ BUILD_IMAGE=" golang:${GO_VERSION} "
3536AMD_IMAGE=gcr.io/distroless/static:nonroot
3637ARM_IMAGE=gcr.io/distroless/static:nonroot-arm64
3738PPC64LE_IMAGE=gcr.io/distroless/static:nonroot-ppc64le
You can’t perform that action at this time.
0 commit comments