Skip to content
Compare
Choose a tag to compare
@hanseartic hanseartic released this 17 Dec 11:53
· 1 commit to main since this release
8643c9c

Deprecation notice

This release does not introduce functional changes. It's used to announce deprecations / upcoming breaking changes.

The default value of the remove-obsolete (currently true) will change to false in the upcoming major version as breaking change.
If you are using the action to implicitly remove orphaned workflow runs you need to change that to explicit handling (i.e. set remove-obsolete: true within the with section):

jobs:
  purge_orphaned_workflows:
    runs-on: ubuntu-latest
    steps:
-    - uses: otto-de/purge-deprecated-workflow-runs@v2
+    - uses: otto-de/purge-deprecated-workflow-runs@v3
        with:
+         remove-obsolete: true
          token: ${{ github.token }}

The action will only be usable by release-versions (e.g. @v2.1). Other ways of referring to the action will stop working.

  • following a branch
    - uses: otto-de/purge-deprecated-workflow-runs@main
  • pinning to a commit-hash
    - uses: otto-de/purge-deprecated-workflow-runs@ac16d8811b992d9a7c42c60d1011526ed4fdcff9 ## v2.1.1

What's Changed

Full Changelog: v2.1.1...v2.2.0