Skip to content

Releases: editorconfig-checker/action-editorconfig-checker

v2

25 Sep 07:32
d2ed4fd
Compare
Choose a tag to compare
Merge pull request #20 from editorconfig-checker/dependabot/npm_and_y…

…arn/types/node-20.6.5

Bump @types/node from 20.6.4 to 20.6.5

v2.0.0

24 Sep 10:44
0ab3427
Compare
Choose a tag to compare

What's Changed

Breaking

Behavior change in #10

Prior to 2.0.0 the purpose of the action was to run editorconfig-checker on the files in the workspace. The purpose of the action is now solely to make editorconfig-checker available in the runner machine for use by subsequent steps in the job.

Migration Guide

A new step that invokes editorconfig-checker must be added to the workflow.

Before:

- name: Check EditorConfig compliance
  uses: editorconfig-checker/action-editorconfig-checker@v1

After:

- name: Install editorconfig-checker
  uses: editorconfig-checker/action-editorconfig-checker@v2

- name: Check EditorConfig compliance
  run: editorconfig-checker

Removal of output output in #10

Prior to 2.0.0 the action provided an output named output that contained the output from running editorconfig-checker on the files in the workspace. This output could be referenced by the action user in subsequent steps/jobs of their workflow.

Due to the change in the action's behavior, the output is no longer provided. If needed, you can capture and use the output in the shell code of the step in the workflow that invokes editorconfig-checker.

Enhancement

New Contributors

Full Changelog: v1...v2.0.0

v1.0.0

17 Nov 06:48
Compare
Choose a tag to compare
release v1.0.0

v1

07 May 07:58
cf3ae64
Compare
Choose a tag to compare
v1
Release v1.0.0

0.2: Merge pull request #2 from tomtomsen/publish-action

23 Sep 06:56
8573b05
Compare
Choose a tag to compare

0.1-beta

23 Sep 06:50
138fb7c
Compare
Choose a tag to compare
0.1-beta Pre-release
Pre-release
Merge pull request #1 from tomtomsen/test

initial commit