You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In dependency update PRs that update the Syft image tag, all PR validation legs will fail since the new Syft image has not been uploaded to the cache ACR. For example, #5846.
The current workaround is to open a cloud shell and mirror the image manually:
# If needed, find the correct subscription ID$team=""
az account list |Select-String"$team"-Context 5$sub=""$acrname=""$tag=""# Generate a new public, read-only DockerHub token with a short lifecycle otherwise you may encounter rate-limiting issues$dockeruname=""$dockertoken=""
az account set --subscription $sub
az acr import -n $acrname--source docker.io/anchore/syft:$tag--username $dockeruname--password $dockertoken
The text was updated successfully, but these errors were encountered:
lbussell
changed the title
New syft images should automatically be mirrored to the public cache ACR
New Syft images should automatically be mirrored to the public cache ACR
Aug 29, 2024
Related: #4545, #5724
In dependency update PRs that update the Syft image tag, all PR validation legs will fail since the new Syft image has not been uploaded to the cache ACR. For example, #5846.
The current workaround is to open a cloud shell and mirror the image manually:
The text was updated successfully, but these errors were encountered: