From 5434d371d986e548e31fe43c1a1cb6c32034c5b9 Mon Sep 17 00:00:00 2001 From: John Practicalli <250870+practicalli-john@users.noreply.github.com> Date: Fri, 5 May 2023 07:05:28 +0100 Subject: [PATCH] ci: remove antq run job liquidz/antq-action runs antq, no need of separate antq job Set schedule to once per month Signed-off-by: John Practicalli <250870+practicalli-john@users.noreply.github.com> --- .github/workflows/scheduled-version-check.yaml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/scheduled-version-check.yaml b/.github/workflows/scheduled-version-check.yaml index fb07ceddf..63c075345 100644 --- a/.github/workflows/scheduled-version-check.yaml +++ b/.github/workflows/scheduled-version-check.yaml @@ -17,8 +17,8 @@ name: "Scheduled Version Check" on: schedule: - - cron: "0 4 * * *" # at 04:04:04 ever day - # - cron: "0 4 * * 5" # at 04:04:04 ever Friday + # - cron: "0 4 * * *" # at 04:04:04 ever day + - cron: "0 4 * * 5" # at 04:04:04 ever Friday # - cron: "0 4 1 * *" # at 04:04:04 on first day of month workflow_dispatch: # Run manually via GitHub Actions Workflow page @@ -35,12 +35,12 @@ jobs: uses: actions/checkout@v3 - run: echo "🐙 ${{ github.repository }} repository was cloned to the runner." - - name: "Setup Antq" - uses: liquidz/antq-action@main - - name: "Antq Check versions" - run: antq --error-format="::error file={{file}}::{{message}}" + uses: liquidz/antq-action@main + with: + excludes: "" + skips: "boot clojure-cli pom shadow-cljs leiningen" + # Summary - run: echo "🎨 library versions checked with liquidz/antq" - - run: echo "🍏 Job status is ${{ job.status }}."