From 83ad5cff747d4f7ff882466ddf9bf0dc292273dc Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Sat, 14 Jan 2023 14:18:03 -0800 Subject: [PATCH] fx #447 by updating deps/actions --- .github/workflows/test-and-release.yml | 8 ++++---- .github/workflows/test-and-snapshot.yml | 18 +++++++++--------- .github/workflows/test.yml | 10 +++++----- CHANGELOG.md | 3 +++ deps.edn | 8 ++++---- 5 files changed, 25 insertions(+), 22 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 5b275e4..3c308d2 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -9,19 +9,19 @@ jobs: build-and-release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 with: fetch-depth: 0 - - uses: actions/setup-java@v2 + - uses: actions/setup-java@v3 with: distribution: 'adopt' java-version: '11' - name: Setup Clojure uses: DeLaGuardo/setup-clojure@master with: - cli: '1.10.3.1053' + cli: '1.11.1.1208' - name: Cache All The Things - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.m2/repository diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index 4e64c9f..2388457 100644 --- a/.github/workflows/test-and-snapshot.yml +++ b/.github/workflows/test-and-snapshot.yml @@ -9,17 +9,17 @@ jobs: build-and-snapshot: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: 'adopt' java-version: '11' - name: Setup Clojure uses: DeLaGuardo/setup-clojure@master with: - cli: '1.10.3.1053' + cli: '1.11.1.1208' - name: Cache All The Things - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.m2/repository @@ -39,19 +39,19 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ '8', '14', '17' ] + java: [ '8', '14', '17', '19' ] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: 'adopt' java-version: ${{ matrix.java }} - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.10.3.1053' + cli: '1.11.1.1208' - name: Cache All The Things - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.m2/repository diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 10500d7..b471923 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -7,19 +7,19 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - java: [ '8', '11', '14', '17' ] + java: [ '8', '11', '14', '17', '19' ] steps: - - uses: actions/checkout@v2 - - uses: actions/setup-java@v2 + - uses: actions/checkout@v3 + - uses: actions/setup-java@v3 with: distribution: 'adopt' java-version: ${{ matrix.java }} - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.10.3.1053' + cli: '1.11.1.1208' - name: Cache All The Things - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: | ~/.m2/repository diff --git a/CHANGELOG.md b/CHANGELOG.md index c23d699..c415ea5 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,8 @@ # Changes +* 2.4.next in progress + * Address [#447](https://github.com/seancorfield/honeysql/issues/447) by updating GitHub Actions and dependencies. + * 2.4.962 -- 2022-12-17 * Fix `set-options!` (only `:checking` worked in 2.4.947). * Fix `:cast` formatting when quoting is enabled, via PR [#443](https://github.com/seancorfield/honeysql/pull/443) [duddlf23](https://github.com/duddlf23). diff --git a/deps.edn b/deps.edn index 92c7a70..f9de1df 100644 --- a/deps.edn +++ b/deps.edn @@ -4,7 +4,7 @@ :aliases {;; for help: clojure -A:deps -T:build help/doc :build {:deps {io.github.seancorfield/build-clj - {:git/tag "v0.8.0" :git/sha "9bd8b8a"}} + {:git/tag "v0.9.1" :git/sha "831c70f"}} :ns-default build} ;; versions to test against: @@ -20,7 +20,7 @@ :test {:extra-paths ["test"] :extra-deps {io.github.cognitect-labs/test-runner - {:git/tag "v0.5.0" :git/sha "48c3c67"} + {:git/tag "v0.5.1" :git/sha "dfb30dd"} org.clojure/core.cache {:mvn/version "RELEASE"}} :exec-fn cognitect.test-runner.api/test} @@ -29,7 +29,7 @@ :main-opts ["-m" "cljs-test-runner.main"]} :gen-doc-tests {:replace-paths ["build"] - :extra-deps {babashka/fs {:mvn/version "0.1.2"} + :extra-deps {babashka/fs {:mvn/version "0.2.12"} com.github.lread/test-doc-blocks {:mvn/version "1.0.166-alpha"}} :main-opts ["-m" "honey.gen-doc-tests"]} @@ -40,5 +40,5 @@ "-c" "{:warnings,{:single-segment-namespace,false}}" "-d" "target/test-doc-blocks/test"]} - :eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.0.0"}} + :eastwood {:extra-deps {jonase/eastwood {:mvn/version "1.3.0"}} :main-opts ["-m" "eastwood.lint" "{:source-paths,[\"src\"]}"]}}}