Container Retention Policy
Version updated for snok/container-retention-policy to version v3.0.0.
- This action is used across all versions by 513 repositories.
Go to the GitHub Marketplace to find the latest changes.
Release notes
v3.0.0
Disclaimer: This release breaks the API of the action to a large degree. It might be wise to run the action with
dry-run: trueafter upgrading.
This release is a complete rewrite of the action, tackling most if not all open issues in the issue tracker. Some of the highlights include:
- Simplifying and consolidating the inputs of the action
- Improving the runtime performance, and the initialization time of the action in CI
- Support for multi-platform packages
- Support for new token types (
secrets.GITHUB_TOKENand Github app tokens) - Much better handling of GitHub API rate limits
💥 There are a lot of breaking changes, so we’ve included a migration guide at the bottom of this post, to make things a bit simpler.
Since the release introduces a few thousand lines of code, we expect there may be a few things left to iron out. If you run into any problems, please share them in the v3 release issue.
In addition to what’s mentioned above, other new features and changes include:
- Significant effort has been spent on improving the logging, to give better insights into what exactly is happening
- Updated license from
BSD-3toMIT. - The available syntax for
image-namesandimage-tagspreviously allowed wildcards (using the*character). We now also allow the?character to express a single-character wildcard. For example, the patternca?will matchcarandcat. See the wildmatch docs for details.
In addition to changing the inputs of the action (more details below), there are a few other breaking changes:
- We’ll no longer maintain mutable major and minor version tags for the action. There will be no
v3target for the action, justv3.0.0and other exact versions. Mutable major version tags are generally hard to maintain and not much safer than tracking the main branch, so more precise tag tracking should reduce the likelihood of broken runs going forward. Paired with dependabot, upgrading should not be much harder than it has been. - The
needs-assistanceoutput was deleted
And in terms of performance improvements:
- The action has been rewritten from a composite action to a container action, and the total size of the new image is < 10Mi.
- The action would previously take ~30 seconds to initialize and would require a Python runtime. The action now starts in less than a second, and runs as a standalone binary.
- The runtime of the action has been reduced, and assuming we need to delete less than 180 package versions, the action completes in, at most, a few seconds. See this example of a recent run. When we have to delete more than 180 package versions, there’s a minute of waiting for every 180 new package versions, as a consequence of GitHub’s secondary API rate limits. See the new README for details.
Migration guide
The
account-typeandorg-nameinputs have been replaced withaccount, which should be set to the literal string “user” if you previously usedaccount-type: personaland to the organization name otherwise:- account-type: personal + account: useror
- account-type: organization - org-name: acme + account: acmeThe
filter-tagskey has been renamed toimage-tags- filter-tags: *-prod + image-tags: *-prodThe
token-typeinput has been removed. If you previously usedtoken-type: github-token, then you can now instead pass the secret value totokenand have the type of token be auto-detected:- token-type: github-token + token: ${{ secrets.GITHUB_TOKEN }}In other words, we’ve consolidated
token-typeandtokeninto a single arg.The
skip-tagsinput has been removed. If you previously usedskip-tags: latest, you should now specify a negative glob pattern inimage-tags.- filter-tags: l* - skip-tags: latest + image-tags: l*, !latestIn other words, we’ve consolidated the two arguments, by adding support for the
!operator, which means “not”.The
filter-include-untaggedanduntagged-onlyinputs were removed.filter-include-untaggedpreviously enabled you to opt-out of deleting untagged images, whileuntagged-onlywould allow you to opt-out of deleting tagged images. This was a bit confusing, even for me.To make things simpler, these have been collapsed into one argument, called
tag-selectionwhich accepts the string valuestagged,untagged, orboth.- filter-include-untagged: true - untagged-only: false + tag-selection: bothor
- filter-include-untagged: true - untagged-only: true + tag-selection: untaggedThe
cut-offinput no longer accepts human-readable datetimes. Instead, it accepts the inputs listed here. For example:- cut-off: two hours and 5 minutes ago UTC+2 + cut-off: 2h 5mor
- cut-off: One week ago UTC + cut-off: 1wThere is no longer timezone support built-into this option. All durations are relative to the current time, UTC.