Updater: Dependency Updates #36
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
| name: 'Updater: Dependency Updates' | |
| on: | |
| schedule: | |
| # Run every day at 8am UTC | |
| - cron: '0 8 * * *' | |
| # Allow manual triggering | |
| workflow_dispatch: | |
| # Required permissions for the action to work | |
| permissions: | |
| contents: write # Required to create branches and commits | |
| pull-requests: write # Required to create pull requests | |
| issues: write # Required to create and apply labels to pull requests | |
| jobs: | |
| update-dependencies: | |
| runs-on: ubuntu-latest | |
| steps: | |
| # Checkout the repository with full history for rebasing | |
| - name: Checkout repository | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 # Full clone required for git operations (rebase, fetch) | |
| # Run the dependency updater using the action from this repository | |
| - name: Update dependencies | |
| uses: aviationexam/[email protected] | |
| with: | |
| github-token: ${{ secrets.GITHUB_TOKEN }} |