MyAlbum/purge-cache

Tag `@v2` does not point to latest version

Closed this issue · 2 comments

Trying the example from the documentation:

steps:
# Do other steps like checkout, install, compile, etc.
- uses: MyAlbum/purge-cache@v2
  with:
    accessed: true # Purge caches by their last accessed time (default)
    created: false # Purge caches by their created time (default)
    max-age: 604800 # Leave only caches accessed in the last 7 days (default)

fails, as the version available via the @v2 tag does not yet support these arguments.
Using @v2.1.0 explicitly works fine, many thanks for this useful action!

I just fixed the tag, thanks for reporting the issue

Many thanks for the very quick fix! 👍