feat(ci): update Postgres minor version and delete temporary tags

This commit is contained in:
Peter 2025-03-26 13:51:04 +01:00
parent 366ceece24
commit 87a06dac66
Signed by: prskr
GPG key ID: F56BED6903BC5E37
25 changed files with 422 additions and 321 deletions
test/utils

View file

@ -32,7 +32,7 @@ const (
prometheusOperatorURL = "https://github.com/prometheus-operator/prometheus-operator/" +
"releases/download/%s/bundle.yaml"
certmanagerVersion = "v1.16.3"
certmanagerVersion = "v1.17.1"
certmanagerURLTmpl = "https://github.com/jetstack/cert-manager/releases/download/%s/cert-manager.yaml"
)
@ -197,7 +197,7 @@ func GetProjectDir() (string, error) {
if err != nil {
return wd, err
}
wd = strings.Replace(wd, "/test/e2e", "", -1)
wd = strings.ReplaceAll(wd, "/test/e2e", "")
return wd, nil
}