From 51f0fe5f960a8cf10356022ba4fab47beacba2cd Mon Sep 17 00:00:00 2001 From: Jan Maack Kjerbye <50995332+janhalen@users.noreply.github.com> Date: Wed, 19 Jun 2024 12:46:47 +0200 Subject: [PATCH] Create gh_actions_updater.yml Added updater --- .github/workflows/gh_actions_updater.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/gh_actions_updater.yml diff --git a/.github/workflows/gh_actions_updater.yml b/.github/workflows/gh_actions_updater.yml new file mode 100644 index 0000000..09eb593 --- /dev/null +++ b/.github/workflows/gh_actions_updater.yml @@ -0,0 +1,20 @@ +name: GitHub Actions Version Updater + +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.8.1 + with: + # [Required] Access token with `workflow` scope. + token: ${{ secrets.WORKFLOW_SECRET }}