free-programming-books
free-programming-books copied to clipboard
chore(deps): bump tj-actions/changed-files from 36.4.0 to 37.0.0
Bumps tj-actions/changed-files from 36.4.0 to 37.0.0.
Release notes
Sourced from tj-actions/changed-files's releases.
v37.0.0
🚀 New Feature
- This version introduces support for using Github's REST API to retrieve the list of changed files without requiring the checkout action.
Example
name: CIon: pull_request: branches: - main
jobs:
-------------------------------------------------------------
Event
pull_request: Returns all changed pull request files.--------------------------------------------------------------
job: # Example - Using GitHub's API # NOTE: # - This is limited to pull_request* events and would raise an error for other events. # - A maximum of 3000 files can be returned. runs-on: ubuntu-latest name: Test changed-files permissions: pull-requests: read steps: - name: Get changed files id: changed-files uses: tj-actions/changed-files@v37
- name: List all changed files run: | for file in ${{ steps.changed-files.outputs.all_changed_files }}; do echo "$file was changed" done🔥 Breaking Change
- Removes the deprecated
dir_names_exclude_rootinput which has been replaced bydir_names_exclude_current_dirWhat's Changed
- Upgraded to v36.4.1 by
@tj-actions-botin tj-actions/changed-files#1283- chore(deps): lock file maintenance by
@renovatein tj-actions/changed-files#1284- chore(deps): lock file maintenance by
@renovatein tj-actions/changed-files#1285- chore(deps): lock file maintenance by
@renovatein tj-actions/changed-files#1287- chore(deps): update tj-actions/verify-changed-files action to v16 by
@renovatein tj-actions/changed-files#1288- chore(deps): lock file maintenance by
@renovatein tj-actions/changed-files#1290- feat: add support for retrieving changed files via github rest api by
@jackton1in tj-actions/changed-files#1289- Updated README.md by
@tj-actions-botin tj-actions/changed-files#1292- remove: deprecated dir_names_exclude_root by
@jackton1in tj-actions/changed-files#1291
... (truncated)
Changelog
Sourced from tj-actions/changed-files's changelog.
37.0.0 - (2023-06-23)
🚀 Features
➖ Remove
🔄 Update
- Updated README.md (#1295)
Co-authored-by: jackton1 [email protected] (a553a02) - (tj-actions[bot])
- Updated README.md (#1292)
Co-authored-by: repo-ranger[bot] (63f203d) - (tj-actions[bot])
⚙️ Miscellaneous Tasks
- Update README.md (5817a9e) - (Tonye Jack)
- deps: Lock file maintenance (#1297) (33d50af) - (renovate[bot])
- Use input api url (#1293) (a4cd522) - (Tonye Jack)
- deps: Lock file maintenance (#1290) (c4a394a) - (renovate[bot])
- deps: Update tj-actions/verify-changed-files action to v16 (#1288) (50ae49b) - (renovate[bot])
- Update manual-test.yml (588d46e) - (Tonye Jack)
- Update README.md (bdeaa91) - (Tonye Jack)
- Update matrix-test.yml (4d8812d) - (Tonye Jack)
- deps: Lock file maintenance (#1287) (668fd3a) - (renovate[bot])
- deps: Lock file maintenance (#1285) (b952f3b) - (renovate[bot])
- deps: Lock file maintenance (#1284) (ce8bc5d) - (renovate[bot])
⬆️ Upgrades
- Upgraded to v36.4.1 (#1283)
Co-authored-by: jackton1 [email protected] (9ff3603) - (tj-actions[bot])
36.4.1 - (2023-06-19)
🐛 Bug Fixes
🔄 Update
- Update action.yml (18c62c5) - (Tonye Jack)
⚙️ Miscellaneous Tasks
... (truncated)
Commits
5817a9echore: Update README.md33d50afchore(deps): lock file maintenance (#1297)a4cd522chore: use input api url (#1293)a553a02Updated README.md (#1295)faa5db4remove: deprecated dir_names_exclude_root (#1291)63f203dUpdated README.md (#1292)fd5b3a4feat: add support for retrieving changed files via github rest api (#1289)c4a394achore(deps): lock file maintenance (#1290)50ae49bchore(deps): update tj-actions/verify-changed-files action to v16 (#1288)588d46echore: Update manual-test.yml- Additional commits viewable in compare view
Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.
Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR:
@dependabot rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot ignore this major versionwill close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this minor versionwill close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)@dependabot ignore this dependencywill close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
Interesting this action failed. Seems like it just needs to be re-run @eshellman https://github.com/EbookFoundation/free-programming-books/actions/runs/5363966171/jobs/9731873725?pr=9415
running again
Superseded by #9422.