Update GitHub Actions versions #730
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: Update GitHub Actions versions | |
on: | |
schedule: | |
- cron: '0 0 * * *' | |
jobs: | |
ghactions-autoupdate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4.0.0 | |
with: | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: Run GitHub Actions Version Updater | |
uses: saadmk11/github-actions-version-updater@v0.8.1 | |
with: | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
pull_request_branch: 'ghactions-autoupdate' | |
commit_message: 'ghactions: github action autoupdate' |