GitHub Actions Version Updater #12
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
# yamllint disable rule:line-length | |
--- | |
name: GitHub Actions Version Updater | |
on: # yamllint disable-line rule:truthy | |
workflow_dispatch: | |
schedule: | |
# Automatically run on every Sunday | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4.2.2 | |
with: | |
# [Required] Access token with `workflow` scope. | |
token: ${{ secrets.ORG_GH_TOKEN }} | |
- name: Run GitHub Actions Version Updater | |
uses: saadmk11/github-actions-version-updater@v0.8.1 | |
with: | |
# [Required] Access token with `workflow` scope. | |
token: ${{ secrets.ORG_GH_TOKEN }} |