From d3251940d62a91cf45ac55feee6cd8d380e54627 Mon Sep 17 00:00:00 2001 From: eaudetcobello Date: Fri, 24 May 2024 09:01:13 -0400 Subject: [PATCH] Review comments --- .../hack/skopeo-config.yaml | 1 + build-scripts/hack/{sync-registry.sh => skopeo-sync.sh} | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) rename .github/data/sync-registry-config.yaml => build-scripts/hack/skopeo-config.yaml (71%) rename build-scripts/hack/{sync-registry.sh => skopeo-sync.sh} (53%) diff --git a/.github/data/sync-registry-config.yaml b/build-scripts/hack/skopeo-config.yaml similarity index 71% rename from .github/data/sync-registry-config.yaml rename to build-scripts/hack/skopeo-config.yaml index b2948eb9f1..9653136928 100644 --- a/.github/data/sync-registry-config.yaml +++ b/build-scripts/hack/skopeo-config.yaml @@ -1,3 +1,4 @@ registry.k8s.io: images-by-semver: pause: "= 3.7" + skopeo: ">= 1.15" diff --git a/build-scripts/hack/sync-registry.sh b/build-scripts/hack/skopeo-sync.sh similarity index 53% rename from build-scripts/hack/sync-registry.sh rename to build-scripts/hack/skopeo-sync.sh index 09b8a13562..90aa3630a7 100755 --- a/build-scripts/hack/sync-registry.sh +++ b/build-scripts/hack/skopeo-sync.sh @@ -1,6 +1,6 @@ #!/bin/bash -docker run -v "${GITHUB_WORKSPACE}/.github/data/sync-registry-config.yaml":/config.yaml quay.io/skopeo/stable:v1.15 sync \ +docker run -v "./skopeo-config.yaml":/config.yaml quay.io/skopeo/stable:v1.15 sync \ --src yaml \ --dest docker \ /config.yaml ghcr.io/canonical \