Skip to content

Commit

Permalink
chore: add gh action updater
Browse files Browse the repository at this point in the history
  • Loading branch information
beeman committed Nov 13, 2024
1 parent 5d23f06 commit f8916e6
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/updater.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: GitHub Actions Version Updater

# Controls when the action will run.
on:
schedule:
# Automatically run on every Sunday
- cron: '0 0 * * 0'
workflow_dispatch:
# Allow manual trigger

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

- name: Run GitHub Actions Version Updater
uses: saadmk11/[email protected]
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}

0 comments on commit f8916e6

Please sign in to comment.