GitHub actions updater #54
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: GitHub actions updater | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * 0' # every Sunday | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v5.0.0 | |
with: | |
token: ${{ secrets.WORKFLOW_SECRET }} # Access token with `workflow` scope | |
- name: Run GitHub Actions Version Updater | |
uses: saadmk11/github-actions-version-updater@v0.9.0 | |
with: | |
# [Required] Access token with `workflow` scope. | |
token: ${{ secrets.WORKFLOW_SECRET }} # Access token with `workflow` scope | |
committer_username: 'Jonathan Gruber' | |
committer_email: 'gruberjonathan@gmail.com' | |
commit_message: 'Update GitHub actions' |