Compare commits

..

2 Commits

Author SHA1 Message Date
abhay084 22cb6a2d3d correct reference 2024-05-10 11:05:38 +05:30
abhay084 dc4f0a8c21 feat: [CI-10849]: add git-leaks support 2024-05-10 11:05:38 +05:30
3 changed files with 4 additions and 4 deletions
+2 -2
View File
@@ -11,7 +11,7 @@ platform:
steps:
- name: build
image: golang:1.22.4
image: golang:1.22
commands:
- go test ./...
- sh scripts/build.sh
@@ -178,7 +178,7 @@ pool:
steps:
- name: build
image: golang:1.22.4
image: golang:1.22
commands:
- go test ./...
- sh scripts/build.sh
+1 -1
View File
@@ -47,4 +47,4 @@ require (
gopkg.in/yaml.v3 v3.0.1 // indirect
)
go 1.22.4
go 1.22.0
+1 -1
View File
@@ -222,7 +222,7 @@ func (p Plugin) Exec() error {
}
if p.Build.SnapshotMode != "" {
cmdArgs = append(cmdArgs, fmt.Sprintf("--snapshot-mode=%s", p.Build.SnapshotMode))
cmdArgs = append(cmdArgs, fmt.Sprintf("--snapshotMode=%s", p.Build.SnapshotMode))
}
if p.Build.EnableCache {