Automated Dependency Updates #24
This file contains 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
name: Automated Dependency Updates | |
on: | |
schedule: | |
- cron: '0 0 * * 0' # Weekly on Sunday at 00:00 | |
workflow_dispatch: # Allows manual triggering | |
push: | |
branches: | |
- master | |
jobs: | |
update-dependencies: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Better Dependabot | |
uses: Drassil/gh-actions-collection/better-dependabot@master | |
with: | |
version_target: 'patch' # Example: target minor version updates | |
token: ${{ secrets.GITHUB_TOKEN }} # Use a GitHub PAT or `${{ secrets.GITHUB_TOKEN }}` | |
target_branch: 'master' |