Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci & dev & lib: bump deps #687

Merged
merged 4 commits into from
Jan 14, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
java-version: '21'

- name: Install Clojure Tools
uses: DeLaGuardo/setup-clojure@13.0
uses: DeLaGuardo/setup-clojure@13.1
with:
bb: 'latest'
cli: 'latest'
Expand Down
9 changes: 7 additions & 2 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
java-version: '11'

- name: Install Clojure Tools
uses: DeLaGuardo/setup-clojure@13.0
uses: DeLaGuardo/setup-clojure@13.1
with:
bb: 'latest'

Expand Down Expand Up @@ -95,6 +95,11 @@ jobs:
if: ${{ matrix.os == 'macos' && contains(matrix.needs, 'imagemagick') }}
run: brew install imagemagick

# No longer pre-install on ubuntu github action runners
- name: Install Image Magick on ubuntu
if: ${{ matrix.os == 'ubuntu' && contains(matrix.needs, 'imagemagick') }}
run: sudo apt-get -y install imagemagick

# No longer pre-installed on macOS github action runners
- name: Install Microsoft Edge on macOS
if: ${{ matrix.os == 'macos' && contains(matrix.needs, 'edge') }}
Expand Down Expand Up @@ -147,7 +152,7 @@ jobs:
java-version: ${{ matrix.jdk-version }}

- name: Install Clojure Tools
uses: DeLaGuardo/setup-clojure@13.0
uses: DeLaGuardo/setup-clojure@13.1
with:
bb: 'latest'

Expand Down
2 changes: 1 addition & 1 deletion bb.edn
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{:min-bb-version "0.8.2"
:paths ["script" "build"]
:deps {doric/doric {:mvn/version "0.9.0"}
org.clj-commons/pretty {:mvn/version "3.2.0"}
org.clj-commons/pretty {:mvn/version "3.3.0"}
lread/status-line {:git/url "https://github.com/lread/status-line.git"
:sha "cf44c15f30ea3867227fa61ceb823e5e942c707f"}
dev.nubank/docopt {:mvn/version "0.6.1-fix7"}
Expand Down
16 changes: 8 additions & 8 deletions deps.edn
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{:paths ["src" "resources"]
:deps {org.clojure/clojure {:mvn/version "1.10.3"} ;; min clojure version
babashka/fs {:mvn/version "0.5.22"}
babashka/fs {:mvn/version "0.5.24"}
babashka/process {:mvn/version "0.5.22"}
org.babashka/http-client {:mvn/version "0.4.22"}
slingshot/slingshot {:mvn/version "0.12.2"}
Expand All @@ -21,8 +21,8 @@
:debug {:extra-paths ["env/dev/resources"]}
:test {:extra-paths ["test" "env/test/resources" "build"]
:extra-deps {io.github.cognitect-labs/test-runner {:git/tag "v0.5.1" :git/sha "dfb30dd"}
org.babashka/cli {:mvn/version "0.8.61"}
ch.qos.logback/logback-classic {:mvn/version "1.3.14"}
org.babashka/cli {:mvn/version "0.8.62"}
ch.qos.logback/logback-classic {:mvn/version "1.3.15"}
;; for http-client which uses apache http client 4.x which uses commons logging
org.slf4j/jcl-over-slf4j {:mvn/version "2.0.16"}}
:exec-fn test-shared/test
Expand Down Expand Up @@ -51,7 +51,7 @@
:main-opts ["-m" "babashka.cli.exec"]}

:clofidence {:classpath-overrides {org.clojure/clojure nil}
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.0-1"}
:extra-deps {com.github.flow-storm/clojure {:mvn/version "1.12.0-2"}
com.github.flow-storm/clofidence {:mvn/version "0.4.0"}}
:exec-fn clofidence.main/run
:exec-args {:report-name "Etaoin Test Coverage"
Expand All @@ -72,15 +72,15 @@
:exclude-linters [:local-shadows-var]
:ignored-faults {:deprecations {etaoin.api-test true}}}]}

: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 ["build"]
:ns-default build}

;; keep deploy deps separate from build deps to avoid download-deps issues
;; caused by, I think, conflicting maven deps
:deploy {:extra-deps {slipset/deps-deploy {:mvn/version "0.2.2"}}}

: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.clojure/clojure {:mvn/version "1.12.0"}
org.slf4j/slf4j-simple {:mvn/version "2.0.16"} ;; to rid ourselves of logger warnings
}
Expand All @@ -91,8 +91,8 @@

:repl/cider
{:extra-deps {org.clojure/clojure {:mvn/version "1.12.0"}
nrepl/nrepl {:mvn/version "1.3.0"}
cider/cider-nrepl {:mvn/version "0.50.2"}
nrepl/nrepl {:mvn/version "1.3.1"}
cider/cider-nrepl {:mvn/version "0.52.0"}
refactor-nrepl/refactor-nrepl {:mvn/version "3.10.0"}}
:jvm-opts ["-XX:-OmitStackTraceInFastThrow"]
:main-opts ["-m" "nrepl.cmdline"
Expand Down
Loading