Skip to content

Commit

Permalink
Fix monthly deps check (#335)
Browse files Browse the repository at this point in the history
* Fix monthly run schedule for deps check

Apparently having both day in month and day in week lets it ignore day
in month.

* Update dependencies
  • Loading branch information
remvee authored Oct 14, 2024
1 parent d9acbae commit fa55cc3
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ancient.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Check deps for freshness

on:
schedule:
- cron: '0 1 1 * 1' # every first of the month
- cron: '0 1 1 * *' # every first of the month
pull_request:
types: [opened, reopened]

Expand Down
8 changes: 4 additions & 4 deletions project.clj
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
[com.taoensso/carmine "3.4.1" :exclusions [org.clojure/tools.reader]]

;; CLI
[nl.jomco/envopts "0.0.4"]
[nl.jomco/envopts "0.0.5"]

;; API
[compojure "1.7.1"]
Expand All @@ -36,9 +36,9 @@
[org.clojure/tools.logging "1.3.0"]
[ch.qos.logback.contrib/logback-jackson "0.1.5"]
[ch.qos.logback.contrib/logback-json-classic "0.1.5"]
[ch.qos.logback/logback-classic "1.5.8"]
[com.fasterxml.jackson.core/jackson-core "2.17.2"]
[com.fasterxml.jackson.core/jackson-databind "2.17.2"]
[ch.qos.logback/logback-classic "1.5.10"]
[com.fasterxml.jackson.core/jackson-core "2.18.0"]
[com.fasterxml.jackson.core/jackson-databind "2.18.0"]

;; force newest version
[cheshire "5.13.0"]
Expand Down

0 comments on commit fa55cc3

Please sign in to comment.