From bf51f725e294c5f567a110e86c1c254c018300ec Mon Sep 17 00:00:00 2001 From: Sean Corfield Date: Wed, 4 Oct 2023 20:37:59 -0700 Subject: [PATCH] update CI tooling versions --- .github/workflows/test-and-release.yml | 4 ++-- .github/workflows/test-and-snapshot.yml | 8 ++++---- .github/workflows/test.yml | 4 ++-- CHANGELOG.md | 1 + 4 files changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/test-and-release.yml b/.github/workflows/test-and-release.yml index 494d395..602d308 100644 --- a/.github/workflows/test-and-release.yml +++ b/.github/workflows/test-and-release.yml @@ -9,7 +9,7 @@ jobs: build-and-release: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 with: fetch-depth: 0 - uses: actions/setup-java@v3 @@ -19,7 +19,7 @@ jobs: - name: Setup Clojure uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1347' + cli: '1.11.1.1413' - name: Cache All The Things uses: actions/cache@v3 with: diff --git a/.github/workflows/test-and-snapshot.yml b/.github/workflows/test-and-snapshot.yml index f4ca85c..1bad1f2 100644 --- a/.github/workflows/test-and-snapshot.yml +++ b/.github/workflows/test-and-snapshot.yml @@ -9,7 +9,7 @@ jobs: build-and-snapshot: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-java@v3 with: distribution: 'adopt' @@ -17,7 +17,7 @@ jobs: - name: Setup Clojure uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1347' + cli: '1.11.1.1413' - name: Cache All The Things uses: actions/cache@v3 with: @@ -41,7 +41,7 @@ jobs: matrix: java: [ '8', '14', '17', '19' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-java@v3 with: distribution: 'adopt' @@ -49,7 +49,7 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1347' + cli: '1.11.1.1413' - name: Cache All The Things uses: actions/cache@v3 with: diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9b3a7ce..286d636 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -9,7 +9,7 @@ jobs: matrix: java: [ '8', '11', '14', '17', '19' ] steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - uses: actions/setup-java@v3 with: distribution: 'adopt' @@ -17,7 +17,7 @@ jobs: - name: Clojure CLI uses: DeLaGuardo/setup-clojure@master with: - cli: '1.11.1.1347' + cli: '1.11.1.1413' - name: Cache All The Things uses: actions/cache@v3 with: diff --git a/CHANGELOG.md b/CHANGELOG.md index 4b06088..44b5445 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,7 @@ * Fix [#505](https://github.com/seancorfield/honeysql/issues/505) by rewriting the helper merge function to handle both keywords and symbols properly. * Address [#503](https://github.com/seancorfield/honeysql/issues/503) by adding `:at-time-zone` special syntax. * Address [#504](https://github.com/seancorfield/honeysql/issues/504) for BigQuery support, by adding special syntax for ignore/respect nulls, as well as new `:distinct` and `:expr` clauses to allow expressions to be qualified with SQL clauses. The latter will probably be useful for other dialects too. + * Update CI tooling versions. * 2.4.1066 -- 2023-08-27 * Add `:select` with function call and alias example to README (PR [#502](https://github.com/seancorfield/honeysql/pull/502) [@markbastian](https://github.com/markbastian)).