Skip to content

0.3.1

Compare
Choose a tag to compare
@tiangolo tiangolo released this 26 Aug 01:47
· 14 commits to main since this release

Now you can (and should) use the native GitHub Action directly, as in:

...
      - uses: tiangolo/[email protected]
        with:
          token: ${{ secrets.GITHUB_TOKEN }}

instead of using the Docker image:

...
      - uses: docker://tiangolo/latest-changes:0.3.1
        with:
          token: ${{ secrets.GITHUB_TOKEN }}

This way, Dependabot will be able to send you PRs updating the version automatically. 🚀

The internal code and build setup was refactored so that the native GitHub Action still re-uses a prebuilt Docker image, so it's still fast. 😎

Fixes

  • 🐛 Fix race condition with retries, when more than one latest-changes is running. PR #69 by @tiangolo.

Refactors

  • ♻️ Make using the native GitHub Action re-use the existing Docker image instead of building from scratch. PR #70 by @tiangolo.

Docs

  • 📝 Update README docs for token permissions. PR #68 by @tiangolo.

Internal