Skip to content

Commit 2713e7e

Browse files
Merge branch 'main' into renovate/actions-setup-python-6.x
2 parents 414864a + ac85967 commit 2713e7e

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

.github/workflows/lint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
lint:
1414
runs-on: ubuntu-latest
1515
steps:
16-
- uses: actions/checkout@v4
16+
- uses: actions/checkout@v5
1717
- name: Set up Python
1818
uses: actions/setup-python@v6
1919
with:

.github/workflows/publish.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ jobs:
1616
id-token: write
1717
steps:
1818
- name: Checkout
19-
uses: actions/checkout@v4
19+
uses: actions/checkout@v5
2020
- name: Set up Python
2121
uses: actions/setup-python@v6
2222
with:

.github/workflows/unittests.yml

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
17-
uses: actions/checkout@v4
17+
uses: actions/checkout@v5
1818
- # Required for the package command tests to work
1919
name: Set up Docker Buildx
2020
uses: docker/setup-buildx-action@v3

setup.py

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,17 +10,17 @@
1010
description = "CloudQuery Plugin SDK for Python"
1111

1212
dependencies = [
13-
"cloudquery-plugin-pb==0.0.47",
13+
"cloudquery-plugin-pb==0.0.48",
1414
"exceptiongroup==1.3.0",
1515
"black==25.9.0",
16-
"grpcio==1.75.0",
16+
"grpcio==1.75.1",
1717
"grpcio-tools==1.75.0",
1818
"iniconfig==2.1.0",
1919
"Jinja2==3.1.6",
20-
"MarkupSafe==3.0.2",
20+
"MarkupSafe==3.0.3",
2121
"numpy==2.3.3",
2222
"packaging==24.2",
23-
"pandas==2.3.2",
23+
"pandas==2.3.3",
2424
"pluggy==1.6.0",
2525
"protobuf>=6.31.1",
2626
"pyarrow==19.0.1",
@@ -30,7 +30,7 @@
3030
"six==1.17.0",
3131
"structlog==25.4.0",
3232
"tomli==2.2.1",
33-
"tzdata==2025.1",
33+
"tzdata==2025.2",
3434
]
3535
url = "https://github.com/cloudquery/plugin-sdk-python"
3636

0 commit comments

Comments
 (0)