Skip to content

Commit 906b657

Browse files
authored
Merge branch 'main' into fix/snowflake-iceberg-clone-dialect-error
2 parents 09936cb + e6ac0e5 commit 906b657

4 files changed

Lines changed: 26 additions & 26 deletions

File tree

.github/workflows/pr.yaml

Lines changed: 19 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ jobs:
1818
client: ${{ steps.filter.outputs.client }}
1919
ci: ${{ steps.filter.outputs.ci }}
2020
steps:
21-
- uses: actions/checkout@v5
22-
- uses: dorny/paths-filter@v3
21+
- uses: actions/checkout@v7
22+
- uses: dorny/paths-filter@v4
2323
id: filter
2424
with:
2525
filters: |
@@ -48,7 +48,7 @@ jobs:
4848
env:
4949
UV: '1'
5050
steps:
51-
- uses: actions/checkout@v5
51+
- uses: actions/checkout@v7
5252
- name: Set up Python
5353
uses: actions/setup-python@v6
5454
with:
@@ -79,7 +79,7 @@ jobs:
7979
PYTEST_XDIST_AUTO_NUM_WORKERS: 2
8080
UV: '1'
8181
steps:
82-
- uses: actions/checkout@v5
82+
- uses: actions/checkout@v7
8383
with:
8484
fetch-depth: 0
8585
- name: Set up Python
@@ -115,7 +115,7 @@ jobs:
115115
source .venv/bin/activate
116116
make cicd-test
117117
- name: Upload test results
118-
uses: actions/upload-artifact@v5
118+
uses: actions/upload-artifact@v7
119119
if: ${{ !cancelled() }}
120120
with:
121121
name: test-results-style-cicd-${{ matrix.python-version }}
@@ -131,7 +131,7 @@ jobs:
131131
steps:
132132
- name: Enable symlinks in git config
133133
run: git config --global core.symlinks true
134-
- uses: actions/checkout@v5
134+
- uses: actions/checkout@v7
135135
- name: Install make
136136
run: choco install make which -y
137137
- name: Set up Python
@@ -151,7 +151,7 @@ jobs:
151151
python --version
152152
make fast-test
153153
- name: Upload test results
154-
uses: actions/upload-artifact@v5
154+
uses: actions/upload-artifact@v7
155155
if: ${{ !cancelled() }}
156156
with:
157157
name: test-results-windows
@@ -168,7 +168,7 @@ jobs:
168168
SQLMESH__DISABLE_ANONYMIZED_ANALYTICS: '1'
169169
UV: '1'
170170
steps:
171-
- uses: actions/checkout@v5
171+
- uses: actions/checkout@v7
172172
with:
173173
fetch-depth: 0
174174
- name: Set up Python
@@ -193,7 +193,7 @@ jobs:
193193
# 'true' || github.ref == 'refs/heads/main'
194194
runs-on: ubuntu-latest
195195
steps:
196-
- uses: actions/checkout@v5
196+
- uses: actions/checkout@v7
197197
- uses: actions/setup-node@v6
198198
with:
199199
node-version: '22'
@@ -203,7 +203,7 @@ jobs:
203203
- name: Get pnpm store directory
204204
id: pnpm-cache
205205
run: echo "store=$(pnpm store path)" >> $GITHUB_OUTPUT
206-
- uses: actions/cache@v4
206+
- uses: actions/cache@v5
207207
with:
208208
path: ${{ steps.pnpm-cache.outputs.store }}
209209
key: pnpm-store-${{ hashFiles('pnpm-lock.yaml') }}
@@ -222,7 +222,7 @@ jobs:
222222
container:
223223
image: mcr.microsoft.com/playwright:v1.54.1-jammy
224224
steps:
225-
- uses: actions/checkout@v5
225+
- uses: actions/checkout@v7
226226
- name: Install pnpm via corepack
227227
run: |
228228
npm install --global corepack@latest
@@ -258,7 +258,7 @@ jobs:
258258
SQLMESH__DISABLE_ANONYMIZED_ANALYTICS: '1'
259259
UV: '1'
260260
steps:
261-
- uses: actions/checkout@v5
261+
- uses: actions/checkout@v7
262262
- name: Set up Python
263263
uses: actions/setup-python@v6
264264
with:
@@ -277,7 +277,7 @@ jobs:
277277
source .venv/bin/activate
278278
make ${{ matrix.engine }}-test
279279
- name: Upload test results
280-
uses: actions/upload-artifact@v5
280+
uses: actions/upload-artifact@v7
281281
if: ${{ !cancelled() }}
282282
with:
283283
name: test-results-docker-${{ matrix.engine }}
@@ -342,7 +342,7 @@ jobs:
342342
FABRIC_TENANT_ID: ${{ secrets.FABRIC_TENANT_ID }}
343343
FABRIC_WORKSPACE_ID: ${{ secrets.FABRIC_WORKSPACE_ID }}
344344
steps:
345-
- uses: actions/checkout@v5
345+
- uses: actions/checkout@v7
346346
- name: Set up Python
347347
uses: actions/setup-python@v6
348348
with:
@@ -385,7 +385,7 @@ jobs:
385385
./.github/scripts/manage-test-db.sh "${{ matrix.engine }}"
386386
"$TEST_DB_NAME" down
387387
- name: Upload test results
388-
uses: actions/upload-artifact@v5
388+
uses: actions/upload-artifact@v7
389389
if: ${{ !cancelled() }}
390390
with:
391391
name: test-results-cloud-${{ matrix.engine }}
@@ -398,7 +398,7 @@ jobs:
398398
runs-on: ubuntu-latest
399399
if: false
400400
steps:
401-
- uses: actions/checkout@v5
401+
- uses: actions/checkout@v7
402402
- uses: actions/setup-node@v6
403403
with:
404404
node-version: '22'
@@ -415,7 +415,7 @@ jobs:
415415
# As at 2026-01-12 this job flakes 100% of the time. It needs investigation
416416
if: false
417417
steps:
418-
- uses: actions/checkout@v5
418+
- uses: actions/checkout@v7
419419
- uses: actions/setup-node@v6
420420
with:
421421
node-version: '22'
@@ -446,7 +446,7 @@ jobs:
446446
run: |
447447
source ../../.venv/bin/activate
448448
pnpm run test:e2e
449-
- uses: actions/upload-artifact@v5
449+
- uses: actions/upload-artifact@v7
450450
if: ${{ !cancelled() }}
451451
with:
452452
name: playwright-report
@@ -459,7 +459,7 @@ jobs:
459459
matrix:
460460
dbt-version: ['1.3', '1.4', '1.5', '1.6', '1.7', '1.8', '1.9', '1.10']
461461
steps:
462-
- uses: actions/checkout@v5
462+
- uses: actions/checkout@v7
463463
- name: Set up Python
464464
uses: actions/setup-python@v6
465465
with:

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ jobs:
99
ui-build:
1010
runs-on: ubuntu-latest
1111
steps:
12-
- uses: actions/checkout@v5
12+
- uses: actions/checkout@v7
1313
- uses: actions/setup-node@v6
1414
with:
1515
node-version: '22'
@@ -21,7 +21,7 @@ jobs:
2121
- name: Build UI
2222
run: pnpm --prefix web/client run build
2323
- name: Upload UI build artifact
24-
uses: actions/upload-artifact@v5
24+
uses: actions/upload-artifact@v7
2525
with:
2626
name: ui-dist
2727
path: web/client/dist/
@@ -31,9 +31,9 @@ jobs:
3131
needs: ui-build
3232
runs-on: ubuntu-latest
3333
steps:
34-
- uses: actions/checkout@v5
34+
- uses: actions/checkout@v7
3535
- name: Download UI build artifact
36-
uses: actions/download-artifact@v4
36+
uses: actions/download-artifact@v8
3737
with:
3838
name: ui-dist
3939
path: web/client/dist/
@@ -61,7 +61,7 @@ jobs:
6161
gh-release:
6262
runs-on: ubuntu-latest
6363
steps:
64-
- uses: actions/checkout@v5
64+
- uses: actions/checkout@v7
6565
with:
6666
fetch-depth: 0
6767
- name: Create release on GitHub

.github/workflows/release_extension.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
runs-on: ubuntu-latest
1212
steps:
1313
- name: Checkout repository
14-
uses: actions/checkout@v5
14+
uses: actions/checkout@v7
1515
- name: Check branch is main
1616
run: |
1717
if [[ "${{ github.ref }}" != "refs/heads/main" ]]; then

.github/workflows/release_shared_js.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ jobs:
1414
runs-on: ubuntu-latest
1515
steps:
1616
- name: Checkout repository
17-
uses: actions/checkout@v5
17+
uses: actions/checkout@v7
1818
- name: Check branch is main
1919
run: |
2020
if [[ "${{ github.ref }}" != "refs/heads/main" ]]; then

0 commit comments

Comments
 (0)