Skip to content

Commit 464de69

Browse files
committed
fix update-cri-dockerd-version
1 parent 37fea8b commit 464de69

File tree

1 file changed

+7
-13
lines changed

1 file changed

+7
-13
lines changed

hack/update/cri_dockerd_version/cri_dockerd_version.go

Lines changed: 7 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -33,24 +33,12 @@ import (
3333

3434
var (
3535
schema = map[string]update.Item{
36-
".github/workflows/master.yml": {
36+
".github/workflows/functional_test.yml": {
3737
Replace: map[string]string{
3838
`CRI_DOCKERD_VERSION=".*"`: `CRI_DOCKERD_VERSION="v{{.Version}}"`,
3939
`CRI_DOCKERD_COMMIT=".*"`: `CRI_DOCKERD_COMMIT="{{.FullCommit}}"`,
4040
},
4141
},
42-
".github/workflows/pr.yml": {
43-
Replace: map[string]string{
44-
`CRI_DOCKERD_VERSION=".*"`: `CRI_DOCKERD_VERSION="v{{.Version}}"`,
45-
`CRI_DOCKERD_COMMIT=".*"`: `CRI_DOCKERD_COMMIT="{{.FullCommit}}"`,
46-
},
47-
},
48-
"hack/jenkins/linux_integration_tests_none.sh": {
49-
Replace: map[string]string{
50-
`CRI_DOCKERD_VERSION=".*"`: `CRI_DOCKERD_VERSION="{{.Version}}"`,
51-
`CRI_DOCKERD_COMMIT=".*"`: `CRI_DOCKERD_COMMIT="{{.FullCommit}}"`,
52-
},
53-
},
5442
"deploy/iso/minikube-iso/arch/aarch64/package/cri-dockerd-aarch64/cri-dockerd.mk": {
5543
Replace: map[string]string{
5644
`CRI_DOCKERD_AARCH64_VER = .*`: `CRI_DOCKERD_AARCH64_VER = {{.Version}}`,
@@ -71,6 +59,12 @@ var (
7159
`CRI_DOCKERD_COMMIT=.*`: `CRI_DOCKERD_COMMIT="{{.FullCommit}}"`,
7260
},
7361
},
62+
"hack/jenkins/linux_integration_tests_none.sh": {
63+
Replace: map[string]string{
64+
`CRI_DOCKERD_VERSION=".*"`: `CRI_DOCKERD_VERSION="{{.Version}}"`,
65+
`CRI_DOCKERD_COMMIT=".*"`: `CRI_DOCKERD_COMMIT="{{.FullCommit}}"`,
66+
},
67+
},
7468
}
7569
)
7670

0 commit comments

Comments
 (0)