axel-op/googlejavaformat-action

Version 3.3.0 is breaking the action.

TomerFi opened this issue · 3 comments

Version 3.3.0 breaks the action.

My configuration was:

      - name: Check java style format
        uses: axel-op/googlejavaformat-action@v3
        with:
          skipCommit: true

Which worked well until the recent 3.3.0 release.
Now it fails and throws:

Error: Parameter token or opts.auth is required

Pinning version 3.2.0, fixed the issue for me:

      - name: Check java style format
        uses: axel-op/googlejavaformat-action@v3.2.0
        with:
          skipCommit: true

Thanks for notifying me, I should have performed more extensive tests. This should be fixed now with v3.3.1.

There were actually multiple bugs with this version, my bad. I fixed them in v3.3.2. Sorry for this!

I can confirm the issue has been fixed after bumping to v3.3.2
Thank you very much for this great action and the fast response!