Skip to content

Commit db69b4e

Browse files
author
Sylvain MARIE
committed
Added versions updater for github actions
1 parent e476da2 commit db69b4e

1 file changed

Lines changed: 24 additions & 0 deletions

File tree

.github/workflows/updater.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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+
with:
23+
# [Required] Access token with `workflow` scope.
24+
token: ${{ secrets.WORKFLOW_SECRET }}

0 commit comments

Comments
 (0)