Breaking Changes
- The breaking change to
version
in v2.0.0 did not actually propagate to the extension code. This has been fixed.
As a reminder, version is now a required input. To get v1 behaviour, supply version: latest
- uses: actions/checkout@v3
- uses: JohnnyMorganz/stylua-action@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
version: latest
# CLI arguments
args: --check .
Changes
version
now properly supports semver version specifiers such as ^0.17.1
and ranges >=0.15.0 <0.17.0
(thanks, @rcloran!)