Skip to content

Commit

Permalink
ci: remove antq run job
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
practicalli-johnny committed May 9, 2023
1 parent f88737f commit 5434d37
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/scheduled-version-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand All @@ -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 }}."

0 comments on commit 5434d37

Please sign in to comment.