From 57d97e9494ce726279548c28aad1c889934e4cb8 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Sun, 16 Oct 2022 20:56:22 +0200 Subject: [PATCH] Create update action. --- .github/workflows/check-updates.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/check-updates.yml diff --git a/.github/workflows/check-updates.yml b/.github/workflows/check-updates.yml new file mode 100644 index 000000000..3a34952bf --- /dev/null +++ b/.github/workflows/check-updates.yml @@ -0,0 +1,20 @@ +name: Check Update +concurrency: check + +on: + workflow_dispatch: + schedule: + # Automatically run on every Sunday + - cron: '0 0 * * 0' + +jobs: + build: + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v3 + with: + token: ${{ secrets.WORKFLOW_SECRET }} + + - name: Run GitHub Actions Version Updater + uses: saadmk11/github-actions-version-updater@v0.5.6 \ No newline at end of file