Compare commits

..

1 Commits

Author SHA1 Message Date
Ompragash Viswanathan e12c834284 fix: Consolidate platform flags to use --custom-platform and eliminate deprecation warning 2025-11-21 11:21:42 +05:30
4 changed files with 7 additions and 5 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 ./...
+1 -1
View File
@@ -1,4 +1,4 @@
FROM harnesscommunity/kaniko-executor:1.25.0-linux-amd64
FROM gcr.io/kaniko-project/executor:v1.23.2
ENV KANIKO_VERSION=1.23.2
ADD release/linux/amd64/kaniko-gcr /kaniko/
+1 -1
View File
@@ -1,4 +1,4 @@
FROM harnesscommunity/kaniko-executor:1.25.0-linux-arm64
FROM gcr.io/kaniko-project/executor:v1.23.2
ENV HOME /root
ENV USER root
+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