Skip to content

Commit 4b3d76c

Browse files
committed
dbt-databricks must be <1.10.2
1 parent 0c442e1 commit 4b3d76c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

.github/workflows/test-warehouse.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,8 @@ jobs:
122122
run: >
123123
pip install
124124
"dbt-core${{ inputs.dbt-version && format('=={0}', inputs.dbt-version) }}"
125-
"dbt-${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks') || inputs.warehouse-type }}${{ inputs.dbt-version && format('<={0}', inputs.dbt-version) }}"
125+
# TODO: remove the <1.10.2 once we have a fix for https://github.com/elementary-data/elementary/issues/1931
126+
"dbt-${{ (inputs.warehouse-type == 'databricks_catalog' && 'databricks<1.10.2,') || inputs.warehouse-type }}${{ inputs.dbt-version && format('~={0}', inputs.dbt-version) }}"
126127
127128
- name: Install Elementary
128129
run: |

0 commit comments

Comments
 (0)