Skip to content

Commit

Permalink
update digests to point from postgres 14.9 to 14.11
Browse files Browse the repository at this point in the history
  • Loading branch information
mdtro committed Apr 19, 2024
1 parent a8d651e commit c75a084
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -210,10 +210,10 @@ def update(self) -> Image:
Image(
registry='registry-1.docker.io',
source='library/postgres',
tag='14-alpine',
tag='14-alpine', # 14.11
digests=(
'sha256:8dc41c1f358669e2006559bc817cd7c1daaa328d1ee8370ac209167f3b6a894f', # noqa: E501
'sha256:583063ce031a46cdff262cdd88f22c15a829ce5814957946ccfdf20ef66d2de6', # noqa: E501
'sha256:36ac395a179b1a85d528670839d9e5787a690ec672ee9ff087ada5ddd8db798a', # noqa: E501
'sha256:36ac395a179b1a85d528670839d9e5787a690ec672ee9ff087ada5ddd8db798a', # noqa: E501
),
),
Image(
Expand Down Expand Up @@ -321,7 +321,7 @@ def main() -> int:
f.write(src)
elif args.command == 'sync':
for img in IMAGES:
dest_img = f'getsentry/image-mirror-{img.source.replace("/", "-")}'
dest_img = f'getsentry/image-mirror-{img.source.replace('/', '-')}'

try:
target_digest_info = _digests('ghcr.io', dest_img, img.tag)
Expand Down

0 comments on commit c75a084

Please sign in to comment.