Skip to content

Commit d1b0f98

Browse files
committed
update the actions regularly
1 parent 15e4bc1 commit d1b0f98

1 file changed

Lines changed: 23 additions & 0 deletions

File tree

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
name: GitHub Actions Version Updater
2+
3+
# Controls when the action will run.
4+
on:
5+
schedule:
6+
# Automatically run first day of every month
7+
- cron: '0 0 1 * *'
8+
9+
jobs:
10+
build:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v6.0.2
15+
with:
16+
# [Required] Access token with `workflow` scope.
17+
token: ${{ secrets.WORKFLOW_SECRET }}
18+
19+
- name: Run GitHub Actions Version Updater
20+
uses: saadmk11/github-actions-version-updater@v0.9.0
21+
with:
22+
# [Required] Access token with `workflow` scope.
23+
token: ${{ secrets.WORKFLOW_SECRET }}

0 commit comments

Comments
 (0)