GitHub Actions Version Updater #1
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 | |
description: Updates GitHub Actions versions in workflow files automatically on a weekly schedule | |
# Controls when the action will run. | |
on: | |
schedule: | |
# Automatically run on every Sunday | |
- cron: '0 0 * * 0' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git checkout | |
uses: actions/checkout@v4.2.2 | |
with: | |
# [Required] Access token with `workflow` scope. | |
token: ${{ secrets.WORKFLOW_SECRET }} | |
- name: Run GitHub Actions Version Updater | |
uses: saadmk11/github-actions-version-updater@v0.8.1 | |
with: | |
# [Required] Access token with `workflow` scope. | |
token: ${{ secrets.WORKFLOW_SECRET }} |