Skip to content

Releases: reviewdog/action-flake8

Release v3.6.2

27 Mar 08:32
9581fa1
Compare
Choose a tag to compare

v3.6.2: PR #45 - Update actions/setup-python action to v4

Release v3.6.1

14 Feb 11:35
b16c6ad
Compare
Choose a tag to compare

v3.6.1: PR #43 - docs: add flake8 version and extension install instruction

Release v3.6.0

11 May 08:10
b6435e6
Compare
Choose a tag to compare

v3.6.0: PR #39 - chore(deps): update reviewdog to 0.14.1

Release v3.5.0

09 May 15:21
7e6551e
Compare
Choose a tag to compare

v3.5.0: PR #38 - chore(deps): update reviewdog to 0.14.0

Release v3.4.0

21 Apr 13:01
d226b6d
Compare
Choose a tag to compare

v3.4.0: PR #37 - chore(deps): update reviewdog to 0.14.1

Release v3.3.1

14 Feb 21:18
29b3cb2
Compare
Choose a tag to compare

v3.3.1: PR #33 - ci: replace 'create-release action' with gh cli

Release v3.3.0

11 Feb 08:09
0606f2d
Compare
Choose a tag to compare

v3.3.0: PR #34 - chore(deps): update reviewdog to 0.14.0

Release v3.2.0

22 Jul 13:52
49cfab0
Compare
Choose a tag to compare

v3.2.0: PR #30 - 💚 Fixes gh actions branch error

Release v3.1.0

07 Jul 11:40
Compare
Choose a tag to compare
:green_heart: Fixes github actions

Release v3.0.0

10 Jan 10:56
6146a50
Compare
Choose a tag to compare

💚 Fix release action (#27)

  • 💥 Replaces javascript action with composite action

This commit replaces the javascript-based action with a composite gh action.
This was done since the javascript had several downsides:

  • Debugging unnecessarily complicated since multiple bash commands were executed
    inside subshells.
  • Maintainers needed to remember to build the javascript package before deploying.

This commit contains the following breaking changes:

  • It does no longer support windows. This, however, can be easily added might
    somebody need it.
  • This version depricates the (redundant)update_pip, install_deps, dev_install, req_file_path, flake8_version, exclude, ignore, max_line_length action input
    arguments.
  • ♻️ Changes entrypoint.sh shebang to /bin/bash

  • 💚 Makes gh-action test python matrix smaller

Github was not really happy with the gh-action agent creating this many
annotations. I therfore now only test the action with the python 3.8. We
might have to update this in the future.

  • 💚 Removes fail-on-error flag from gh-action test

  • 💡 Adds -fail-on-error bug comment

  • ✨ Removes reviewdog bin after main action has run

This commit makes sure the reviewdog binary is removed after the main
action has run. It further contains some small bug fixes and
documentation changes.

  • 💚 Fixes release gh-action