Github Action Updater #7
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 Action Updater | |
on: | |
schedule: | |
- cron: "38 14 1 * *" # Update monthly | |
workflow_dispatch: | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
# [Required] Access token with `workflow` scope. | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |
- name: GitHub Actions Version Updater | |
# You may pin to the exact commit or the version. | |
# uses: saadmk11/github-actions-version-updater@64be81ba69383f81f2be476703ea6570c4c8686e | |
uses: saadmk11/[email protected] | |
with: | |
# GitHub Personal Access Token with `workflow` scope | |
token: ${{ secrets.WORKFLOW_TOKEN }} | |