Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dist/cleanup/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/cleanup/index.js.map

Large diffs are not rendered by default.

8 changes: 5 additions & 3 deletions src/cleanup.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,16 +62,18 @@ export async function cleanupOldImageVersions(
// Without checking imageInfo.RepoTags for a match, we would actually remove the latter even if
// this was the active version.
if (imageMatches(imageInfo, imageName)) {
core.info(`Skipping current image ${imageInfo.Id}`)
core.info(`Skipping current image ${imageInfo.Id} for ${repo}`)
continue
}

core.info(`Removing image ${imageInfo.Id}`)
core.info(`Removing image ${imageInfo.Id} for ${repo}`)
try {
await docker.getImage(imageInfo.Id).remove()
} catch (error: unknown) {
if (error instanceof Error) {
core.info(`Unable to remove ${imageInfo.Id} -- ${error.message}`)
core.info(
`Unable to remove image ${imageInfo.Id} for ${repo} -- ${error.message}`
)
}
}
}
Expand Down