Skip to content

bot: bump tj-actions/changed-files from 46.0.3 to 46.0.5 #33

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

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2025

Bumps tj-actions/changed-files from 46.0.3 to 46.0.5.

Release notes

Sourced from tj-actions/changed-files's releases.

v46.0.5

What's Changed

Full Changelog: tj-actions/changed-files@v46...v46.0.5

v46.0.4

What's Changed

Full Changelog: tj-actions/changed-files@v46...v46.0.4

Changelog

Sourced from tj-actions/changed-files's changelog.

Changelog

46.0.5 - (2025-04-09)

⚙️ Miscellaneous Tasks

  • deps: Bump yaml from 2.7.0 to 2.7.1 (#2520) (ed68ef8) - (dependabot[bot])
  • deps-dev: Bump typescript from 5.8.2 to 5.8.3 (#2516) (a7bc14b) - (dependabot[bot])
  • deps-dev: Bump @​types/node from 22.13.11 to 22.14.0 (#2517) (3d751f6) - (dependabot[bot])
  • deps-dev: Bump eslint-plugin-prettier from 5.2.3 to 5.2.6 (#2519) (e2fda4e) - (dependabot[bot])
  • deps-dev: Bump ts-jest from 29.2.6 to 29.3.1 (#2518) (0bed1b1) - (dependabot[bot])
  • deps: Bump github/codeql-action from 3.28.12 to 3.28.15 (#2530) (6802458) - (dependabot[bot])
  • deps: Bump tj-actions/branch-names from 8.0.1 to 8.1.0 (#2521) (cf2e39e) - (dependabot[bot])
  • deps: Bump tj-actions/verify-changed-files from 20.0.1 to 20.0.4 (#2523) (6abeaa5) - (dependabot[bot])

⬆️ Upgrades

  • Upgraded to v46.0.4 (#2511)

Co-authored-by: github-actions[bot] (6f67ee9) - (github-actions[bot])

46.0.4 - (2025-04-03)

🐛 Bug Fixes

  • Bug modified_keys and changed_key outputs not set when no changes detected (#2509) (6cb76d0) - (Tonye Jack)

📚 Documentation

⬆️ Upgrades

  • Upgraded to v46.0.3 (#2506)

Co-authored-by: github-actions[bot] Co-authored-by: Tonye Jack jtonye@ymail.com (27ae6b3) - (github-actions[bot])

46.0.3 - (2025-03-23)

🔄 Update

  • Updated README.md (#2501)

Co-authored-by: github-actions[bot] (41e0de5) - (github-actions[bot])

  • Updated README.md (#2499)

Co-authored-by: github-actions[bot] (9457878) - (github-actions[bot])

📚 Documentation

... (truncated)

Commits
  • ed68ef8 chore(deps): bump yaml from 2.7.0 to 2.7.1 (#2520)
  • a7bc14b chore(deps-dev): bump typescript from 5.8.2 to 5.8.3 (#2516)
  • 3d751f6 chore(deps-dev): bump @​types/node from 22.13.11 to 22.14.0 (#2517)
  • e2fda4e chore(deps-dev): bump eslint-plugin-prettier from 5.2.3 to 5.2.6 (#2519)
  • 0bed1b1 chore(deps-dev): bump ts-jest from 29.2.6 to 29.3.1 (#2518)
  • 6802458 chore(deps): bump github/codeql-action from 3.28.12 to 3.28.15 (#2530)
  • cf2e39e chore(deps): bump tj-actions/branch-names from 8.0.1 to 8.1.0 (#2521)
  • 6abeaa5 chore(deps): bump tj-actions/verify-changed-files from 20.0.1 to 20.0.4 (#2523)
  • 6f67ee9 Upgraded to v46.0.4 (#2511)
  • 6cb76d0 fix: bug modified_keys and changed_key outputs not set when no changes detect...
  • Additional commits viewable in compare view

Dependabot compatibility score

You can trigger a rebase of this PR by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will 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 version will 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 dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

Note
Automatic rebases have been disabled on this pull request as it has been open for over 30 days.

@dependabot dependabot bot requested a review from Klintrup April 14, 2025 08:28
@dependabot dependabot bot added dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code labels Apr 14, 2025
Copy link

Potential issues, bugs, and flaws that can introduce unwanted behavior:

  1. .github/workflows/lint.yml - The updated version of the tj-actions/changed-files action (v46.0.5) may introduce new behaviors or bugs that could affect how changed files are detected. Prior to upgrading, it's advisable to review the changelog or documentation for v46.0.5 to ensure there are no breaking changes that can disrupt the workflow.

Code suggestions and improvements for better exception handling, logic, standardization, and consistency:

  1. .github/workflows/lint.yml - Consider defining a variable for the version of tj-actions/changed-files to avoid duplicating the version string in multiple locations. This would simplify updates in the future and enhance maintainability:

    - name: Get changed files
      id: changed-files
    - uses: tj-actions/changed-files@${{ secrets.CHANGED_FILES_VERSION }} # stored in the repo secrets or as a variable

    By doing this, you can set CHANGED_FILES_VERSION in one place, which makes future upgrades easier.

  2. .github/workflows/lint.yml - It may be beneficial to add comments or annotations explaining the purpose of the workflow steps, especially if the actions are not immediately clear to new contributors. This enhances documentation and improves the onboarding process for new team members.

Copy link

github-actions bot commented Apr 14, 2025

🦙 MegaLinter status: ✅ SUCCESS

Descriptor Linter Files Fixed Errors Warnings Elapsed time
✅ BASH bash-exec 1 0 0 0.22s
✅ BASH shellcheck 1 0 0 0.08s
✅ BASH shfmt 1 0 0 0 0.02s
✅ COPYPASTE jscpd yes no no 1.16s
✅ MARKDOWN markdownlint 2 0 0 0 0.53s
✅ MARKDOWN markdown-link-check 3 0 0 3.07s
✅ MARKDOWN markdown-table-formatter 3 0 0 0 0.17s
✅ REPOSITORY checkov yes no no 9.98s
✅ REPOSITORY gitleaks yes no no 0.06s
✅ REPOSITORY git_diff yes no no 0.0s
✅ REPOSITORY grype yes no no 22.19s
✅ REPOSITORY syft yes no no 1.08s
✅ REPOSITORY trivy yes no no 5.0s
✅ REPOSITORY trivy-sbom yes no no 0.08s
✅ REPOSITORY trufflehog yes no no 2.12s

See detailed report in MegaLinter reports

MegaLinter is graciously provided by OX Security

@Klintrup
Copy link
Owner

@dependabot rebase

@Klintrup Klintrup self-assigned this Jun 16, 2025
@dependabot dependabot bot force-pushed the dependabot/github_actions/tj-actions/changed-files-46.0.5 branch from 6f28f92 to 73373f6 Compare June 16, 2025 13:33
@Klintrup
Copy link
Owner

@dependabot recreate

Bumps [tj-actions/changed-files](https://github.com/tj-actions/changed-files) from 46.0.3 to 46.0.5.
- [Release notes](https://github.com/tj-actions/changed-files/releases)
- [Changelog](https://github.com/tj-actions/changed-files/blob/main/HISTORY.md)
- [Commits](tj-actions/changed-files@823fceb...ed68ef8)

---
updated-dependencies:
- dependency-name: tj-actions/changed-files
  dependency-version: 46.0.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/github_actions/tj-actions/changed-files-46.0.5 branch from 73373f6 to 17359d3 Compare June 16, 2025 13:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file github_actions Pull requests that update GitHub Actions code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant