Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgraded to v5 #40

Merged
merged 1 commit into from
May 1, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Changelog

## [v5](https://github.com/tj-actions/changed-files/tree/v5) (2021-05-01)

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v4.4...v5)

**Merged pull requests:**

- Switch to using a bash script. [\#39](https://github.com/tj-actions/changed-files/pull/39) ([jackton1](https://github.com/jackton1))
- Upgraded to v4.4 [\#38](https://github.com/tj-actions/changed-files/pull/38) ([jackton1](https://github.com/jackton1))

## [v4.4](https://github.com/tj-actions/changed-files/tree/v4.4) (2021-05-01)

[Full Changelog](https://github.com/tj-actions/changed-files/compare/v4.3...v4.4)
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v4.4
uses: tj-actions/changed-files@v5

- name: List all modified files
run: |
Expand All @@ -100,11 +100,11 @@ jobs:
- uses: actions/checkout@v2
- name: Get changed files using defaults
id: changed-files
uses: tj-actions/changed-files@v4.4
uses: tj-actions/changed-files@v5

- name: Get changed files using a comma separator
id: changed-files-comma
uses: tj-actions/changed-files@v4.4
uses: tj-actions/changed-files@v5
with:
separator: ","

Expand Down Expand Up @@ -160,7 +160,7 @@ jobs:

- name: Get changed files
id: changed-files
uses: tj-actions/changed-files@v4.4
uses: tj-actions/changed-files@v5

- name: Pre-commit
uses: pre-commit/[email protected]
Expand Down