Skip to content

Commit

Permalink
Enable github action updates
Browse files Browse the repository at this point in the history
  • Loading branch information
zoenglinghou authored May 15, 2024
1 parent d290748 commit be24fa0
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/updater.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
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 }}

0 comments on commit be24fa0

Please sign in to comment.