Skip to content

Releases: ibiqlik/action-yamllint

v3.1.1 set-output deprecation

14 Oct 20:33
2576378
Compare
Choose a tag to compare

What's Changed

Full Changelog: v3...v3.1.1

v3.1.0

10 Oct 14:43
81e214f
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v3.0.4...v3.1.0

v3.0.4 Fix exitcode

19 Aug 16:19
ed2b6e9
Compare
Choose a tag to compare

⚠️ CRITICAL FIX!
With v3, v3.0 and v3.0.3 exit code was not set correctly and job succeeded even when there were errors in yaml files.

Fixes #28

v3.0.3 File input fix

18 Aug 13:28
bbdd400
Compare
Choose a tag to compare

Bug fix #26; when multiple files/paths where provided in the file_or_dir parameter yamllint would fail.

@dhimanmohit2548 thanks for reporting it.

v3.0.2 --no-warnings flag

26 May 06:58
c19bd05
Compare
Choose a tag to compare

Add supports for no-warnings flag #19

v3.0.1

23 Apr 10:05
c2e8ecc
Compare
Choose a tag to compare

Change default output format to parsable

v3.0.0 Composite action

08 Nov 18:03
b2aeacc
Compare
Choose a tag to compare

Since Github runners now have yamllint installed by default see actions/runner-images#1657, thanks @yvele 🙏, the action is now a Composite action and not a Docker action which speeds up the run significantly because the dockerfile doesn't need building before running yamllint.

If you need to use Docker action, continue using ibiqlik/action-yamllint@v2, there is no difference in functionality.

Happy linting ✅

v2.0.0

22 Oct 10:31
76fdac3
Compare
Choose a tag to compare

Use the new github format in yamllint by default, which will annotate the file and line when there is a yaml error/warning 🎉

Bumping major version to not disturb anyone who likes how v1 works right now.

Changelog

#12 - Use yamllint github format to set file annotations on errors & warnings

v1.0.0

28 Feb 09:29
665205c
Compare
Choose a tag to compare

Fixes important bug where recursion ** did not work properly. Thank you @lucianposton for fixing it.

This release falls back to using Dockerfile instead of published docker image for consistency when referencing action using tag, commit or branch.
It is a bit slower as the image has to be built. In future I will fix the automation around updating the image tag in the action.yml and use docker image again.

Changelog

#4 - Use bash in entrypoint, fixes #2 #3
#6 - Autotag releases, fixes #5

v0.0.2

29 Jan 11:59
26e96b3
Compare
Choose a tag to compare

Changelog

a39b849 - Use docker image instead of building it for faster runs
0080381 - Add default values for some options
cf0212b - Use the current directory as default path for yamllint. THANKS @ruzickap