diff options
author | Tom <TD5@users.noreply.github.com> | 2023-03-02 10:06:15 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-03-02 10:06:15 +0000 |
commit | b6bc71fb34f5c76a20bced037308ac0e3dbc4c14 (patch) | |
tree | 75aa23e8982f22b9c93c6c8a1260fd73de38202c /.github/workflows | |
parent | e3dbc9eb4f2ba4b6d89c763c8a20e8705288f50f (diff) | |
download | erlang-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.yaml | 22 |
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" |