Bump CI #104
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: Bump CI | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 8 * * *' | |
jobs: | |
bump: | |
name: Search for dependency updates | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code changes | |
uses: actions/checkout@v4 | |
- name: Update dependencies | |
uses: wader/bump/action@master | |
env: | |
GITHUB_TOKEN: ${{ secrets.BUMP_TOKEN }} |