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 v19 #383

Merged
merged 1 commit into from
Feb 28, 2024
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.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
19 changes: 19 additions & 0 deletions HISTORY.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,24 @@
# Changelog

# [19.0.0](https://github.com/tj-actions/verify-changed-files/compare/v18.0.0...v19.0.0) - (2024-02-28)

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 103 Warning

Expected: 80; Actual: 103

Check warning

Code scanning / Markdownlint (reported by Codacy)

Multiple top-level headings in the same document Warning

Multiple top-level headings in the same document

## <!-- 30 -->📝 Other

- PR [#379](https://github.com/tj-actions/verify-changed-files/pull/379): update tj-actions/verify-changed-files action to v18 ([8b28bea](https://github.com/tj-actions/verify-changed-files/commit/8b28bea118e7723e4672bc7ac323bcd26f271ec4)) - (repo-ranger[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 260 Warning

Expected: 80; Actual: 260
- PR [#378](https://github.com/tj-actions/verify-changed-files/pull/378): to v18 ([af712b8](https://github.com/tj-actions/verify-changed-files/commit/af712b8f542eeebb40dba284565a3e7e02844a85)) - (repo-ranger[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 214 Warning

Expected: 80; Actual: 214

## <!-- 7 -->⚙️ Miscellaneous Tasks

- **deps:** Update tj-actions/glob action to v21 ([#382](https://github.com/tj-actions/verify-changed-files/issues/382)) ([d774a4c](https://github.com/tj-actions/verify-changed-files/commit/d774a4c7ebe335445d79c7b44138f56a76058ba0)) - (renovate[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 251 Warning

Expected: 80; Actual: 251
- **deps:** Update peter-evans/create-pull-request action to v6.0.1 ([b31c3d7](https://github.com/tj-actions/verify-changed-files/commit/b31c3d7152683e7f2dbd93ce53c1808b846f5312)) - (renovate[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 198 Warning

Expected: 80; Actual: 198
- **deps:** Update codacy/codacy-analysis-cli-action action to v4.4.0 ([cb704d8](https://github.com/tj-actions/verify-changed-files/commit/cb704d8c717959cf92ec9db9131372bc20356aa2)) - (renovate[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 200 Warning

Expected: 80; Actual: 200
- **deps:** Update tj-actions/verify-changed-files action to v18 ([0f9c16f](https://github.com/tj-actions/verify-changed-files/commit/0f9c16f085bc362f37b7accc5de4f167b00df0da)) - (renovate[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 195 Warning

Expected: 80; Actual: 195

## <!-- 9 -->⬆️ Upgrades

- Upgraded from v17.1.0 -> v18
([a3189f7](https://github.com/tj-actions/verify-changed-files/commit/a3189f77681a2e9e3cd81458de28ce72d76805e2)) - (jackton1)

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 126 Warning

Expected: 80; Actual: 126

# [18.0.0](https://github.com/tj-actions/verify-changed-files/compare/v17.1.0...v18.0.0) - (2024-02-01)

## <!-- 26 -->🔄 Update
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ Verify that certain files or directories did or did not change during the workfl
echo "Changed" > test_directory/new.txt

- name: Verify Changed files
uses: tj-actions/verify-changed-files@v18
uses: tj-actions/verify-changed-files@v19
id: verify-changed-files
with:
files: |
Expand All @@ -81,7 +81,7 @@ Verify that certain files or directories did or did not change during the workfl
```yaml
...
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v18
uses: tj-actions/verify-changed-files@v19
id: verify-changed-files
with:
files: |
Expand All @@ -99,7 +99,7 @@ Verify that certain files or directories did or did not change during the workfl
```yaml
...
- name: Verify Changed files
uses: tj-actions/verify-changed-files@v18
uses: tj-actions/verify-changed-files@v19
id: verify-changed-files

- name: List all changed tracked and untracked files
Expand All @@ -124,7 +124,7 @@ Support this project with a :star:
<!-- AUTO-DOC-INPUT:START - Do not remove or modify this section -->

```yaml
- uses: tj-actions/verify-changed-files@v18
- uses: tj-actions/verify-changed-files@v19
id: verify-changed-files
with:
# Indicates whether to fail if files have changed.
Expand Down