Skip to content

Releases: tj-actions/changed-files

v41.0.1

24 Dec 17:40
716b1e1
Compare
Choose a tag to compare

What's Changed

Full Changelog: v41...v41.0.1

v41.0.0

23 Dec 12:10
6e79d6e
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: Get changed files
      id: changed-files
      uses: tj-actions/changed-files@v40
      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 added files
      env:
        ADDED_FILES: ${{ steps.changed-files.outputs.added_files }}
      run: |
        for file in "$ADDED_FILES"; do
          echo "$file was added"
        done
...

What's Changed

Full Changelog: v40...v41.0.0

v40.2.3

18 Dec 19:17
Compare
Choose a tag to compare

What's Changed

Full Changelog: v40...v40.2.3

v40

26 Oct 04:13
Compare
Choose a tag to compare

Changes in v40.2.3

What's Changed

Full Changelog: v40...v40.2.3


Changes in v40.2.2

What's Changed

Full Changelog: v40...v40.2.2


Changes in v40.2.1

What's Changed

Full Changelog: v40...v40.2.1


Changes in v40.2.0

What's Changed

Full Changelog: v40...v40.2.0


Changes in v40.1.1

What's Changed

Read more

v40.2.2

10 Dec 07:17
9454999
Compare
Choose a tag to compare

What's Changed

Full Changelog: v40...v40.2.2

v40.2.1

04 Dec 03:38
Compare
Choose a tag to compare

What's Changed

Full Changelog: v40...v40.2.1

v40.2.0

27 Nov 09:10
da093c1
Compare
Choose a tag to compare

What's Changed

Full Changelog: v40...v40.2.0

v40.1.1

08 Nov 03:37
Compare
Choose a tag to compare

What's Changed

Full Changelog: v40...v40.1.1

v40.1.0

03 Nov 20:58
18c8a4e
Compare
Choose a tag to compare

What's Changed

Full Changelog: v40...v40.1.0

v40.0.2

31 Oct 18:46
4052680
Compare
Choose a tag to compare

What's Changed

Full Changelog: v40...v40.0.2