Skip to content

Commit 2c0ce0a

Browse files
authored
Merge pull request #9 from PyMoDAQ/action/fix-github-actions-updater
Fix Github Actions Updater + Manual trigger
2 parents d8a8662 + 1f22f5c commit 2c0ce0a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/updater.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@ name: GitHub Actions Version Updater
22

33
# Controls when the action will run.
44
on:
5+
workflow_dispatch:
56
schedule:
67
# Automatically run at 00:00 on day-of-month 5.
78
- cron: '0 0 5 * *'
@@ -11,13 +12,13 @@ jobs:
1112
runs-on: ubuntu-latest
1213

1314
steps:
14-
- uses: actions/checkout@v4
15+
- uses: actions/checkout@v4.2.2
1516
with:
1617
# [Required] Access token with `workflow` scope.
1718
token: ${{ secrets.WORKFLOW_SECRET }}
1819

1920
- name: Run GitHub Actions Version Updater
20-
uses: saadmk11/github-actions-version-updater@v0.8.1
21+
uses: saadmk11/github-actions-version-updater@v0.9.0
2122
with:
2223
# [Required] Access token with `workflow` scope.
2324
token: ${{ secrets.WORKFLOW_SECRET }}

0 commit comments

Comments
 (0)