Skip to content

Commit

Permalink
test & ci: bump deps (#325)
Browse files Browse the repository at this point in the history
Of note:
- bumped sci via test-sci
  • Loading branch information
lread authored Jan 13, 2025
1 parent 13dcb77 commit 5ad4820
Show file tree
Hide file tree
Showing 6 changed files with 590 additions and 159 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/libs-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ jobs:
## instead of using lein bundled with github actions image.
## Upcoming 2.11.2 might fix, can optionally revisit in the future.
- name: Install Lein
uses: DeLaGuardo/setup-clojure@13.0
uses: DeLaGuardo/setup-clojure@13.1
with:
lein: 2.10.0

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/shared-setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ runs:
if: inputs.jdk != 'skip'

- name: Install Babashka & Clojure
uses: DeLaGuardo/setup-clojure@13.0
uses: DeLaGuardo/setup-clojure@13.1
with:
bb: 'latest'
cli: 'latest'
Expand Down
16 changes: 8 additions & 8 deletions deps.edn
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
;; REPL to support bb dev-jvm & dev-cljs tasks, see script/dev_repl.clj
;;
:nrepl
{:extra-deps {nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.2"}}
{:extra-deps {nrepl/nrepl {:mvn/version "1.3.1"}
cider/cider-nrepl {:mvn/version "0.52.0"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]}

:nrepl/jvm
Expand All @@ -40,7 +40,7 @@

:nrepl/cljs ;; note shadow-cljs does its own thing, this is for a REPL with
;; support for plain old ClojureScript
{:extra-deps {cider/piggieback {:mvn/version "0.5.3"}}
{:extra-deps {cider/piggieback {:mvn/version "0.6.0"}}
:main-opts ["-m" "nrepl.cmdline"
"--middleware" "[cider.nrepl/cider-middleware cider.piggieback/wrap-cljs-repl]"
"-i"]}
Expand Down Expand Up @@ -99,7 +99,7 @@
:main-opts ["-m" "cognitect.test-runner"]}

;; figwheel for clojurescript testing during dev
:fig-test {:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.18"}}
:fig-test {:extra-deps {com.bhauman/figwheel-main {:mvn/version "0.2.19"}}
:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:extra-paths ["target" "test"]
:main-opts ["-m" "figwheel.main" "-b" "fig" "-r"]}
Expand All @@ -120,7 +120,7 @@
cli-matic/cli-matic {:mvn/version "0.5.4"}}}

:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}
:extra-deps {metosin/malli {:mvn/version "0.16.4"}
:extra-deps {metosin/malli {:mvn/version "0.17.0"}
io.aviso/pretty {:mvn/version "1.4.4"}}
:ns-default lread.apply-import-vars}

Expand All @@ -137,7 +137,7 @@

:sci-test {:extra-paths ["target/generated/sci-test/src"]
:extra-deps {lread/sci-test {:git/url "https://github.com/lread/sci-test.git"
:sha "27318786f077d491c9cbc0c9d99e5781d9a9ef83"}}}
:sha "1708b6b5d247be903baf9d3052728a0dc7f540c8"}}}

:native-test {:extra-paths ["target/generated/graal"]}

Expand All @@ -147,7 +147,7 @@
;;
;; Deployment
;;
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.5"}}
:build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.6"}}
:extra-paths ["src" "build"]
:ns-default build}

Expand All @@ -158,7 +158,7 @@
;;
;; Maintenance support
;;
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.11.1250"}
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "2.11.1264"}
org.slf4j/slf4j-simple {:mvn/version "2.0.16"} ;; to rid ourselves of logger warnings
}
:override-deps {org.clojure/clojure {:mvn/version "1.12.0"}}
Expand Down
Loading

0 comments on commit 5ad4820

Please sign in to comment.