Updated some github actions workflows and added an workflow to automatically update actions

This commit is contained in:
Jan Böhmer 2023-03-18 22:03:34 +01:00
parent f86d35f8d1
commit ac402a6697
3 changed files with 25 additions and 2 deletions

23
.github/workflows/actions_updater.yaml vendored Normal file
View file

@ -0,0 +1,23 @@
name: GitHub Actions Version Updater
# Controls when the action will run.
on:
schedule:
# Automatically run on every Sunday
- cron: '0 0 * * 0'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}
- name: Run GitHub Actions Version Updater
uses: saadmk11/github-actions-version-updater@v0.7.4
with:
# [Required] Access token with `workflow` scope.
token: ${{ secrets.WORKFLOW_SECRET }}