Compare commits

..

3 Commits

Author SHA1 Message Date
OP (oppenheimer) 1bae3d7741 Update docker/gcr/Dockerfile.linux.arm64 2025-11-26 11:39:32 +05:30
OP (oppenheimer) 12ab830220 Update docker/gcr/Dockerfile.linux.amd64 2025-11-26 11:39:26 +05:30
abhay084 b3bc100f3b fix: [CI-19670]: fix vulnerabilty fron kaniko 2025-11-26 11:35:07 +05:30
3 changed files with 6 additions and 12 deletions
+2 -2
View File
@@ -37,7 +37,7 @@ pipeline:
identifier: Build
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.23.0
shell: Sh
command: |-
go test ./...
@@ -322,7 +322,7 @@ pipeline:
identifier: Build_and_Test
spec:
connectorRef: Plugins_Docker_Hub_Connector
image: golang:1.24.11
image: golang:1.23.0
shell: Sh
command: |-
go test ./...
+3 -1
View File
@@ -58,4 +58,6 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.24.11
go 1.23.0
toolchain go1.23.8
+1 -9
View File
@@ -227,15 +227,7 @@ func (p Plugin) Exec() error {
}
if _, err := os.Stat(p.Build.Dockerfile); os.IsNotExist(err) {
// Get absolute path for better error message. If path is empty, this will
// return the current working directory, showing where the plugin looked.
absPath, absErr := filepath.Abs(p.Build.Dockerfile)
if absErr != nil {
absPath = p.Build.Dockerfile
}
return fmt.Errorf("dockerfile does not exist at path: %s", absPath)
return fmt.Errorf("dockerfile does not exist at path: %s", p.Build.Dockerfile)
}
var tags = p.Build.Tags