From b42f932be5b3fee4a990cb3e03478d5da2d4293b Mon Sep 17 00:00:00 2001 From: Tonye Jack Date: Sat, 4 Dec 2021 07:58:46 -0500 Subject: [PATCH] Upgraded from v11.7 -> v1.3.0 (#274) Co-authored-by: jackton1 --- HISTORY.md | 28 ++++++++++++++++++++++++++++ README.md | 22 +++++++++++----------- 2 files changed, 39 insertions(+), 11 deletions(-) diff --git a/HISTORY.md b/HISTORY.md index 5844ed8b..67511a59 100644 --- a/HISTORY.md +++ b/HISTORY.md @@ -1,5 +1,33 @@ # Changelog +## [v1.3.0](https://github.com/tj-actions/changed-files/tree/v1.3.0) (2021-12-04) + +[Full Changelog](https://github.com/tj-actions/changed-files/compare/v11.7...v1.3.0) + +**Implemented enhancements:** + +- \[Feature\] Improve error handling of non local commit reference [\#255](https://github.com/tj-actions/changed-files/issues/255) + +**Fixed bugs:** + +- \[BUG\] When running in a workflow generated by a dependabot BUMP PR, the action fails [\#268](https://github.com/tj-actions/changed-files/issues/268) + +**Closed issues:** + +- Fix code scanning alert - Warn when duplicate definitions are found. [\#267](https://github.com/tj-actions/changed-files/issues/267) + +**Merged pull requests:** + +- Resolve error setting the base sha [\#272](https://github.com/tj-actions/changed-files/pull/272) ([jackton1](https://github.com/jackton1)) +- Fixed error with test [\#270](https://github.com/tj-actions/changed-files/pull/270) ([jackton1](https://github.com/jackton1)) +- Resolve error adding remote [\#269](https://github.com/tj-actions/changed-files/pull/269) ([jackton1](https://github.com/jackton1)) +- Update base sha step [\#266](https://github.com/tj-actions/changed-files/pull/266) ([jackton1](https://github.com/jackton1)) +- Improve error handling [\#263](https://github.com/tj-actions/changed-files/pull/263) ([jackton1](https://github.com/jackton1)) +- Update README.md [\#262](https://github.com/tj-actions/changed-files/pull/262) ([jackton1](https://github.com/jackton1)) +- Updated README.md [\#260](https://github.com/tj-actions/changed-files/pull/260) ([jackton1](https://github.com/jackton1)) +- Updated README.md [\#258](https://github.com/tj-actions/changed-files/pull/258) ([jackton1](https://github.com/jackton1)) +- Upgraded to v11.7 [\#257](https://github.com/tj-actions/changed-files/pull/257) ([jackton1](https://github.com/jackton1)) + ## [v11.7](https://github.com/tj-actions/changed-files/tree/v11.7) (2021-11-19) [Full Changelog](https://github.com/tj-actions/changed-files/compare/v1.2.2...v11.7) diff --git a/README.md b/README.md index e9b8d552..b52f2f0f 100644 --- a/README.md +++ b/README.md @@ -63,7 +63,7 @@ jobs: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 - name: List all modified files run: | @@ -136,11 +136,11 @@ Support this project with a :star: - name: Get changed files using defaults id: changed-files - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 - name: Get changed files using a comma separator id: changed-files-comma - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: separator: "," @@ -162,7 +162,7 @@ Support this project with a :star: - name: Get specific changed files id: changed-files-specific - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: files: | my-file.txt @@ -200,14 +200,14 @@ Support this project with a :star: - name: Use a source file or list of file(s) to populate to files input. id: changed-files-specific-source-file - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: files_from_source_file: | test/changed-files-list.txt - name: Use a source file or list of file(s) to populate to files input and optionally specify more files. id: changed-files-specific-source-file-and-specify-files - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: files_from_source_file: | test/changed-files-list.txt @@ -216,13 +216,13 @@ Support this project with a :star: - name: Use a different commit SHA id: changed-files-custom-sha - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: sha: ${{ github.event.pull_request.head.sha }} - name: Use a different base SHA id: changed-files-custom-base-sha - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: base_sha: "2096ed0" @@ -234,7 +234,7 @@ Support this project with a :star: - name: Run changed-files with defaults on the dir1 id: changed-files-for-dir1 - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: path: dir1 @@ -246,7 +246,7 @@ Support this project with a :star: - name: Run changed-files using the last commit on the remote branch id: changed-files-since-last-remote-commit - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 with: since_last_remote_commit: 'true' @@ -263,7 +263,7 @@ Support this project with a :star: - name: Get changed files id: changed-files - uses: tj-actions/changed-files@v11.7 + uses: tj-actions/changed-files@v1.3.0 - name: Pre-commit uses: pre-commit/action@v2.0.0