summaryrefslogtreecommitdiff
path: root/.github/workflows/actions-updater.yaml
diff options
context:
space:
mode:
Diffstat (limited to '.github/workflows/actions-updater.yaml')
-rw-r--r--.github/workflows/actions-updater.yaml22
1 files changed, 22 insertions, 0 deletions
diff --git a/.github/workflows/actions-updater.yaml b/.github/workflows/actions-updater.yaml
new file mode 100644
index 0000000000..0e186cf4e1
--- /dev/null
+++ b/.github/workflows/actions-updater.yaml
@@ -0,0 +1,22 @@
+name: GitHub Actions Updater
+
+on:
+ schedule:
+ # Automatically run on the 1st of every month
+ - cron: '0 0 1 * *'
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ steps:
+ - uses: actions/checkout@v3
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+
+ - name: Run GitHub Actions Version Updater
+ uses: saadmk11/github-actions-version-updater@v0.7.3
+ with:
+ token: ${{ secrets.GITHUB_TOKEN }}
+ commit_message: "Updating GitHub actions to their latest versions"
+ pull_request_labels: "team:IS"