Bump codecov/codecov-action from 5.5.2 to 5.5.3 #173
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Security references: | |
| # - https://securitylab.github.com/resources/github-actions-preventing-pwn-requests | |
| # - https://securitylab.github.com/resources/github-actions-untrusted-input | |
| # - https://securitylab.github.com/resources/github-actions-building-blocks | |
| # - https://securitylab.github.com/resources/github-actions-new-patterns-and-mitigations | |
| name: Auto Merge Dependabot | |
| on: | |
| pull_request: | |
| permissions: | |
| contents: write | |
| pull-requests: write | |
| jobs: | |
| auto-merge: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 5 | |
| # Only run for Dependabot PRs - security: prevent running on PRs from forks or other actors | |
| if: github.actor == 'dependabot[bot]' | |
| steps: | |
| # repo: https://github.com/actions/checkout | |
| # releases: https://github.com/actions/checkout/tags | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 released on 09-01-2026 | |
| # repo: https://github.com/fastify/github-action-merge-dependabot | |
| # releases: https://github.com/fastify/github-action-merge-dependabot/tags | |
| # The action waits for required status checks by default | |
| - uses: fastify/github-action-merge-dependabot@1b2ed42db8f9d81a46bac83adedfc03eb5149dff # v3.11.2 released on 03-10-2025 | |
| with: | |
| # github-token: ${{ secrets.TOKEN_AUTOMERGE }} | |
| # Using built-in GITHUB_TOKEN for better security (auto-scoped, auto-expires) | |
| # Falls back to TOKEN_AUTOMERGE if GITHUB_TOKEN lacks permissions | |
| github-token: ${{ secrets.GITHUB_TOKEN }} | |
| merge-method: squash # merge|squash|rebase | |
| target: minor |