diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 2b71ec0..8b2b521 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -12,7 +12,7 @@ jobs: - uses: actions/checkout@v4 with: fetch-depth: 0 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'adopt' java-version: '11' @@ -21,9 +21,9 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1413' + cli: '1.11.2.1446' - name: Cache All The Things - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.m2/repository diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index 3bbc144..45121ec 100644 --- a/.github/workflows/test-and-snapshot.yml +++ b/.github/workflows/test-and-snapshot.yml @@ -10,7 +10,7 @@ jobs: runs-on: ubuntu-20.04 steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'adopt' java-version: '11' @@ -19,9 +19,9 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1413' + cli: '1.11.2.1446' - name: Cache All The Things - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.m2/repository @@ -44,16 +44,16 @@ jobs: java: [ '17', '20' ] steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'adopt' java-version: ${{ matrix.java }} - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1413' + cli: '1.11.2.1446' - name: Cache All The Things - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.m2/repository diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ed6c630..d93e76f 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -10,7 +10,7 @@ jobs: java: [ '11', '17', '20' ] steps: - uses: actions/checkout@v4 - - uses: actions/setup-java@v3 + - uses: actions/setup-java@v4 with: distribution: 'adopt' java-version: ${{ matrix.java }} @@ -19,9 +19,9 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1413' + cli: '1.11.2.1446' - name: Cache All The Things - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: | ~/.m2/repository diff --git a/CHANGELOG.md b/CHANGELOG.md index feeb4a4..3f6fd19 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,7 @@ Only accretive/fixative changes will be made from now on. * 2.1.next in progress * Address [#31](https://github.com/clojure-expectations/clojure-test/issues/31) by adding more examples to `more-of`. + * Update dev/test dependencies. * 2.1.188 -- 2023-10-22 * Address [#29](https://github.com/clojure-expectations/clojure-test/issues/29) by providing a "hook" for `more-of`. diff --git a/deps.edn b/deps.edn index 4ca52bd..8e95d7b 100755 --- a/deps.edn +++ b/deps.edn @@ -3,8 +3,8 @@ :deps {org.clojure/clojure {:mvn/version "1.9.0"}} :aliases {;; for help: clojure -A:deps -T:build help/doc - :build {:deps {io.github.clojure/tools.build {:mvn/version "0.9.6"} - slipset/deps-deploy {:mvn/version "0.2.1"}} + :build {:deps {io.github.clojure/tools.build {:mvn/version "0.10.0"} + slipset/deps-deploy {:mvn/version "0.2.2"}} :ns-default build} ;; versions to test against: @@ -29,7 +29,7 @@ {:extra-deps {pjstadig/humane-test-output {:mvn/version "RELEASE"}}} :cljs - {:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.0"} + {:extra-deps {olical/cljs-test-runner {:mvn/version "3.8.1"} pjstadig/humane-test-output {:mvn/version "0.11.0"}} :extra-paths ["src" "test" "cljs-test-runner-out/gen"] :main-args ["-m" "cljs-test-runner.main" "--doo-opts" diff --git a/doc/getting-started-cljs.md b/doc/getting-started-cljs.md index cccbc5d..3d460b5 100644 --- a/doc/getting-started-cljs.md +++ b/doc/getting-started-cljs.md @@ -21,7 +21,7 @@ Your `deps.edn` should include this information: ```clojure {:aliases {:cljs-runner {:extra-deps {com.github.seancorfield/expectations {:mvn/version "2.1.188"}, - olical/cljs-test-runner {:mvn/version "3.8.0"}, + olical/cljs-test-runner {:mvn/version "3.8.1"}, pjstadig/humane-test-output {:mvn/version "0.11.0"}}, :extra-paths ["src" "test" "cljs-test-runner-out/gen"], :main-opts ["-m" "cljs-test-runner.main"