We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f0e08d commit 53d0afeCopy full SHA for 53d0afe
1 file changed
.github/workflows/schedule-update-actions.yml
@@ -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 on every Sunday
7
+ - cron: '0 0 * * 0'
8
9
+jobs:
10
+ build:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ with:
16
+ # [Required] Access token with `workflow` scope.
17
+ token: ${{ secrets.PAT }}
18
19
+ - name: Run GitHub Actions Version Updater
20
+ uses: saadmk11/github-actions-version-updater@v0.7.4
21
22
23
0 commit comments