mirror of https://github.com/Squidex/squidex.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
451 B
22 lines
451 B
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@v4.1.6
|
|
with:
|
|
token: ${{ secrets.WORKFLOW_SECRET }}
|
|
|
|
- name: Check for Update
|
|
uses: saadmk11/github-actions-version-updater@v0.8.1
|
|
with:
|
|
token: ${{ secrets.WORKFLOW_SECRET }}
|
|
|