We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e0e2ba1 commit 433e38dCopy full SHA for 433e38d
.github/workflows/update-gh-actions.yml
@@ -0,0 +1,25 @@
1
+# yamllint disable rule:line-length
2
+---
3
+name: GitHub Actions Version Updater
4
+
5
+on: # yamllint disable-line rule:truthy
6
+ workflow_dispatch:
7
+ schedule:
8
+ # Automatically run on every Sunday
9
+ - cron: '0 0 * * 0'
10
11
+jobs:
12
+ build:
13
+ runs-on: ubuntu-latest
14
15
+ steps:
16
+ - uses: actions/checkout@v4
17
+ with:
18
+ # [Required] Access token with `workflow` scope.
19
+ token: ${{ secrets.ORG_GH_TOKEN }}
20
21
+ - name: Run GitHub Actions Version Updater
22
+ uses: saadmk11/[email protected]
23
24
25
0 commit comments