Skip to content

Releases: tj-actions/verify-changed-files

v17.0.1

04 Jan 04:59
4321d85
Compare
Choose a tag to compare

What's Changed

Full Changelog: v17...v17.0.1

v17.0.0

29 Dec 03:07
bc950d8
Compare
Choose a tag to compare

🔥 🔥 BREAKING CHANGE 🔥 🔥

A new safe_output input is now available to prevent outputting unsafe filename characters (Enabled by default). This would escape characters in the filename that could be used for command injection.

Note

This can be disabled by setting the safe_output to false this comes with a recommendation to store all outputs generated in an environment variable first before using them.

Example

...
      - name: Verify Changed files
        uses: tj-actions/verify-changed-files@v16
        id: verify-changed-files
        with:
          safe_output: false # set to false because we are using an environment variable to store the output and avoid command injection.
      
      - name: List all changed tracked and untracked files
        env:
          FILES_CHANGED: ${{ steps.verify-changed-files.outputs.changed_files }}
        run: |
          echo "Changed files: $FILES_CHANGED
...

What's Changed

Full Changelog: v16...v17.0.0

v16.1.1

01 Oct 02:36
54e20d3
Compare
Choose a tag to compare

What's Changed

Full Changelog: v16...v16.1.1

v16

22 Jun 08:54
54e20d3
Compare
Choose a tag to compare
v16

Changes in v16.1.1

What's Changed

Full Changelog: v16...v16.1.1


Changes in v16.1.0

What's Changed

New Contributors

Full Changelog: v16...v16.1.0


Changes in v16.0.1

What's Changed

Full Changelog: v16...v16.0.1


Changes in v16.0.0

What's Changed

Full Changelog: v15...v16.0.0


v16.1.0

21 Sep 01:58
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v16...v16.1.0

v16.0.1

18 Jul 06:44
Compare
Choose a tag to compare

What's Changed

Full Changelog: v16...v16.0.1

v16.0.0

22 Jun 08:54
7f1b21c
Compare
Choose a tag to compare

What's Changed

Full Changelog: v15...v16.0.0

v15.0.2

22 Jun 08:51
0409e18
Compare
Choose a tag to compare

What's Changed

Full Changelog: v15...v15.0.2

v15

11 Jun 04:19
0409e18
Compare
Choose a tag to compare

Changes in v15.0.2

What's Changed

Full Changelog: v15...v15.0.2


Changes in v15.0.1

What's Changed

Full Changelog: v15...v15.0.1


Changes in v15.0.0

🔥 🔥 Breaking Changes 🔥 🔥

  • match-gitignore-files input introduced and enabled by default which would include git ignored files generated during the workflow execution.

What's Changed

New Contributors

Full Changelog: v14...v15.0.0


v15.0.1

12 Jun 13:01
7da22d0
Compare
Choose a tag to compare

What's Changed

Full Changelog: v15...v15.0.1