summaryrefslogtreecommitdiff
path: root/.github/workflows
diff options
context:
space:
mode:
authorTom <TD5@users.noreply.github.com>2023-03-02 10:06:15 +0000
committerGitHub <noreply@github.com>2023-03-02 10:06:15 +0000
commitb6bc71fb34f5c76a20bced037308ac0e3dbc4c14 (patch)
tree75aa23e8982f22b9c93c6c8a1260fd73de38202c /.github/workflows
parente3dbc9eb4f2ba4b6d89c763c8a20e8705288f50f (diff)
downloaderlang-b6bc71fb34f5c76a20bced037308ac0e3dbc4c14.tar.gz
Add GitHub actions version updater
Add an action to update all GitHub actions, once per month
Diffstat (limited to '.github/workflows')
-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"