GitHub Actions Version Updater #2
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: GitHub Actions Version Updater | |
on: | |
schedule: | |
# 12:00 AM on the first of every month | |
- cron: '0 0 1 * *' | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.1.1 | |
with: | |
# This requires a personal access token with the privileges to push directly to `main` | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
persist-credentials: true | |
- name: Run GitHub Actions Version Updater | |
uses: saadmk11/github-actions-version-updater@v0.8.1 | |
with: | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
committer_email: 'bumpversion[bot]@ouranos.ca' | |
committer_username: 'update-github-actions[bot]' | |
pull_request_title: '[bot] Update GitHub Action Versions' |