We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e476da2 commit db69b4eCopy full SHA for db69b4e
1 file changed
.github/workflows/updater.yml
@@ -0,0 +1,24 @@
1
+name: GitHub Actions Version Updater
2
+
3
+# Controls when the action will run.
4
+on:
5
+ workflow_dispatch:
6
+ schedule:
7
+ # Automatically run on every first day of the month
8
+ - cron: '0 0 1 * *'
9
10
+jobs:
11
+ build:
12
+ runs-on: ubuntu-latest
13
14
+ steps:
15
+ - uses: actions/checkout@v4.1.1
16
+ with:
17
+ # [Required] Access token with `workflow` scope.
18
+ token: ${{ secrets.WORKFLOW_SECRET }}
19
20
+ - name: Run GitHub Actions Version Updater
21
+ uses: saadmk11/github-actions-version-updater@v0.8.1
22
23
24
0 commit comments