Skip to content

Commit 539eb89

Browse files
committed
internal deps: update for tooling, lib tests, ci
1 parent 5ed0769 commit 539eb89

File tree

9 files changed

+90
-89
lines changed

9 files changed

+90
-89
lines changed

.github/workflows/code-coverage.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: curl -s https://raw.githubusercontent.com/borkdude/babashka/master/install | sudo bash
2929

3030
- name: Install clojure
31-
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.967.sh | sudo bash
31+
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.986.sh | sudo bash
3232

3333
- name: Tools versions
3434
run: |

.github/workflows/libs-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
run: curl -s https://raw.githubusercontent.com/borkdude/babashka/master/install | sudo bash
3838

3939
- name: Install Clojure
40-
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.967.sh | sudo bash
40+
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.986.sh | sudo bash
4141

4242
- name: Tools versions
4343
run: |

.github/workflows/native-image-test.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ jobs:
4141
# Install GraalVM
4242
#
4343
- name: Install GraalVM
44-
uses: DeLaGuardo/setup-graalvm@4.0
44+
uses: DeLaGuardo/setup-graalvm@5.0
4545
with:
4646
graalvm: '21.2.0'
4747
java: ${{ matrix.graal-java }}
@@ -78,7 +78,7 @@ jobs:
7878
run: brew install clojure/tools/clojure
7979
if: matrix.os == 'macos-latest'
8080
- name: Install clojure (linux)
81-
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.967.sh | sudo bash
81+
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.986.sh | sudo bash
8282
if: matrix.os == 'ubuntu-latest'
8383

8484
- name: Bring down ClojureTools early

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ jobs:
3939
run: curl -s https://raw.githubusercontent.com/borkdude/babashka/master/install | sudo bash
4040

4141
- name: Install Clojure
42-
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.967.sh | sudo bash
42+
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.986.sh | sudo bash
4343

4444
- name: Tools Versions
4545
run: |

.github/workflows/unit-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ jobs:
9898
run: brew install clojure/tools/clojure
9999
if: matrix.os == 'macos-latest'
100100
- name: Install clojure (linux)
101-
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.967.sh | sudo bash
101+
run: curl -s https://download.clojure.org/install/linux-install-1.10.3.986.sh | sudo bash
102102
if: matrix.os == 'ubuntu-latest'
103103

104104
- name: Bring down ClojureTools early

deps.edn

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
;; linting
2222
:lint-cache {:replace-paths ["src"]} ;; when building classpath we want to exclude resources
2323
;; so we do not pick up our own clj-kondo config exports
24-
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.09.15"}}
24+
:clj-kondo {:extra-deps {clj-kondo/clj-kondo {:mvn/version "2021.09.25"}}
2525
:main-opts ["-m" "clj-kondo.main"]}
2626

2727
:eastwood {:extra-deps {jonase/eastwood {:mvn/version "0.9.9"}}
@@ -48,7 +48,7 @@
4848
:extra-paths ["target/test-doc-blocks/test"]}
4949

5050
;; kaocha for clojure testing
51-
:kaocha {:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.887"}
51+
:kaocha {:extra-deps {lambdaisland/kaocha {:mvn/version "1.0.902"}
5252
lambdaisland/kaocha-junit-xml {:mvn/version "0.0.76"}
5353
lambdaisland/kaocha-cloverage {:mvn/version "1.0.75"}}
5454
:main-opts ["-m" "kaocha.runner"]}
@@ -73,7 +73,7 @@
7373
cli-matic/cli-matic {:mvn/version "0.4.3"}}}
7474

7575
:apply-import-vars {:override-deps {org.clojure/clojure {:mvn/version "1.10.3"}}
76-
:extra-deps {metosin/malli {:mvn/version "0.6.1"}
76+
:extra-deps {metosin/malli {:mvn/version "0.6.2"}
7777
io.aviso/pretty {:mvn/version "1.1"}}
7878
:ns-default lread.apply-import-vars}
7979

@@ -106,14 +106,14 @@
106106
;;
107107
;; Deployment
108108
;;
109-
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.5.0" :git/sha "7d77952"}
110-
io.github.slipset/deps-deploy {:sha "3d20d0ee86c35c431e4fcf5b0830a3785e8116c0"}}
109+
:build {:deps {io.github.clojure/tools.build {:git/tag "v0.5.1" :git/sha "21da7d4"}
110+
io.github.slipset/deps-deploy {:sha "9b8db1f57722d19cf92de57ac7db28d71a915bcf"}}
111111
:ns-default build}
112112

113113
;;
114114
;; Maintenance support
115115
;;
116-
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "1.0.1"}
116+
:outdated {:extra-deps {com.github.liquidz/antq {:mvn/version "1.1.0"}
117117
org.slf4j/slf4j-simple {:mvn/version "1.7.32"} ;; to rid ourselves of logger warnings
118118
}
119119
:main-opts ["-m" "antq.core"

0 commit comments

Comments
 (0)