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 v18 #378

Merged
merged 1 commit into from Feb 3, 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
22 changes: 22 additions & 0 deletions HISTORY.md
@@ -1,5 +1,27 @@
# Changelog

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

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

## <!-- 26 -->🔄 Update

- Update README.md ([eb6d385](https://github.com/tj-actions/verify-changed-files/commit/eb6d385c0e52fb28e2f6b70e15c835cb3cbfff17)) - (Tonye Jack)

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 146 Warning

Expected: 80; Actual: 146

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

- PR [#376](https://github.com/tj-actions/verify-changed-files/pull/376): update peter-evans/create-pull-request action to v6 ([9c9cfe3](https://github.com/tj-actions/verify-changed-files/commit/9c9cfe3186f1dd857997da7f291e6086fbefb3b1)) - (repo-ranger[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 259 Warning

Expected: 80; Actual: 259

Check notice

Code scanning / Remark-lint (reported by Codacy)

Warn when references to undefined definitions are found. Note

[no-undefined-references] Found reference to undefined definition
- PR [#375](https://github.com/tj-actions/verify-changed-files/pull/375): update tj-actions/glob action to v20 ([5ef175f](https://github.com/tj-actions/verify-changed-files/commit/5ef175f2fd84957530d0fdd1384a541069e403f2)) - (repo-ranger[bot])

Check notice

Code scanning / Remark-lint (reported by Codacy)

Warn when references to undefined definitions are found. Note

[no-undefined-references] Found reference to undefined definition

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 244 Warning

Expected: 80; Actual: 244

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

- **deps:** Update peter-evans/create-pull-request action to v6 ([809c01f](https://github.com/tj-actions/verify-changed-files/commit/809c01fc80c7aff6bea863d0e2b4e8c4de0fd5d1)) - (renovate[bot])

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 194 Warning

Expected: 80; Actual: 194

Check notice

Code scanning / Remark-lint (reported by Codacy)

Warn when references to undefined definitions are found. Note

[no-undefined-references] Found reference to undefined definition
- **deps:** Update tj-actions/glob action to v20 ([338873f](https://github.com/tj-actions/verify-changed-files/commit/338873f5ae24dc5af58fb334801ee8d12ad292d4)) - (renovate[bot])

Check notice

Code scanning / Remark-lint (reported by Codacy)

Warn when references to undefined definitions are found. Note

[no-undefined-references] Found reference to undefined definition

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 179 Warning

Expected: 80; Actual: 179

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

- Upgraded from v17.0.2 -> v17.1.0 ([#374](https://github.com/tj-actions/verify-changed-files/issues/374))

Co-authored-by: jackton1 <jackton1@users.noreply.github.com> ([58f5ac7](https://github.com/tj-actions/verify-changed-files/commit/58f5ac78e19e6cc3fb9d4048ae1a13bf364fa983)) - (tj-actions[bot])

Check notice

Code scanning / Remark-lint (reported by Codacy)

Warn for autolinks without protocol. Note

[no-auto-link-without-protocol] All automatic links must start with a protocol

Check warning

Code scanning / Markdownlint (reported by Codacy)

Expected: 80; Actual: 193 Warning

Expected: 80; Actual: 193

Check notice

Code scanning / Remark-lint (reported by Codacy)

Warn when references to undefined definitions are found. Note

[no-undefined-references] Found reference to undefined definition

# [17.1.0](https://github.com/tj-actions/verify-changed-files/compare/v17.0.2...v17.1.0) - (2024-01-20)

## <!-- 0 -->🚀 Features
Expand Down
8 changes: 4 additions & 4 deletions README.md
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@v17
uses: tj-actions/verify-changed-files@v18
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@v17
uses: tj-actions/verify-changed-files@v18
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@v17
uses: tj-actions/verify-changed-files@v18
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@v17
- uses: tj-actions/verify-changed-files@v18
id: verify-changed-files
with:
# Indicates whether to fail if files have changed.
Expand Down