Fix builder updater (#2774)

Signed-off-by: Matej Vašek <mvasek@redhat.com>
This commit is contained in:
Matej Vašek 2025-04-09 15:47:14 +02:00 committed by GitHub
parent 3e75e25506
commit c93de80381
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@ name: Update builder-jammy-full image
on:
schedule:
- cron: '0 */4 * * *'
- cron: '0 * * * *'
jobs:
build-and-push-image:

View File

@ -833,7 +833,7 @@ func fixupGoBuildpackARM64(ctx context.Context, config *builder.Config) error {
)
for i, moduleConfig := range config.Buildpacks {
uri := moduleConfig.ImageOrURI.URI
if strings.Contains(uri, "paketo-buildpacks/go:") {
if strings.Contains(uri, "buildpacks/go:") {
goBuildpackIndex = i
goBuildpackVersion = uri[strings.LastIndex(uri, ":")+1:]
break