Skip to content

Commit f1cf1de

Browse files
author
maxime.c
committed
Merge branch 'main' into maxi297/remove_declarative_stream
2 parents a04aead + e4b34b6 commit f1cf1de

24 files changed

+684
-335
lines changed

.github/actions/check-docker-tag/action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,4 +25,4 @@ runs:
2525
echo "The tag '$tag' already exists on DockerHub. Skipping publish to prevent overwrite."
2626
exit 1
2727
fi
28-
echo "No existing tag '$tag' found. Proceeding with publish."
28+
echo "No existing tag '$tag' found. Proceeding with publish."

.github/workflows/autofix-command.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ jobs:
7373
[1]: ${{ steps.vars.outputs.run-url }}
7474
7575
- name: Set up Poetry
76-
uses: Gr1N/setup-poetry@v9
76+
uses: snok/install-poetry@v1
7777
with:
78-
poetry-version: "2.0.1"
78+
version: "2.0.1"
7979
- name: Set up Python
8080
uses: actions/setup-python@v5
8181
with:

.github/workflows/connector-tests.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -141,9 +141,9 @@ jobs:
141141
142142
- name: Set up Poetry
143143
if: steps.no_changes.outputs.status != 'cancelled'
144-
uses: Gr1N/setup-poetry@v9
144+
uses: snok/install-poetry@v1
145145
with:
146-
poetry-version: "2.0.1"
146+
version: "2.0.1"
147147

148148
- name: Get Connector Language
149149
if: steps.no_changes.outputs.status != 'cancelled'

.github/workflows/pdoc_preview.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@ jobs:
1414
- name: Checkout code
1515
uses: actions/checkout@v4
1616
- name: Set up Poetry
17-
uses: Gr1N/setup-poetry@v9
17+
uses: snok/install-poetry@v1
1818
with:
19-
poetry-version: "2.0.1"
19+
version: "2.0.1"
2020
- name: Set up Python
2121
uses: actions/setup-python@v5
2222
with:

.github/workflows/pdoc_publish.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,9 +31,9 @@ jobs:
3131
- name: Checkout code
3232
uses: actions/checkout@v4
3333
- name: Set up Poetry
34-
uses: Gr1N/setup-poetry@v9
34+
uses: snok/install-poetry@v1
3535
with:
36-
poetry-version: "2.0.1"
36+
version: "2.0.1"
3737
- name: Set up Python
3838
uses: actions/setup-python@v5
3939
with:

.github/workflows/poetry-lock-command.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ jobs:
8181
[1]: ${{ steps.vars.outputs.run-url }}
8282
8383
- name: Set up Poetry
84-
uses: Gr1N/setup-poetry@v9
84+
uses: snok/install-poetry@v1
8585
with:
86-
poetry-version: "2.0.1"
86+
version: "2.0.1"
8787
- name: Set up Python
8888
uses: actions/setup-python@v5
8989
with:

.github/workflows/publish.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -376,6 +376,8 @@ jobs:
376376
PREVIOUS_VERSION=$(cat oss/airbyte-connector-builder-resources/CDK_VERSION)
377377
sed -i "s/${PREVIOUS_VERSION}/${VERSION}/g" "oss/airbyte-connector-builder-server/Dockerfile"
378378
sed -i "s/airbyte-cdk==${PREVIOUS_VERSION}/airbyte-cdk==${VERSION}/g" oss/airbyte-connector-builder-server/requirements.in
379+
sed -i "s/tag: ${PREVIOUS_VERSION}/tag: ${VERSION}/g" "oss/charts/v2/airbyte/values.yaml"
380+
sed -i "s/refs\/tags\/v${PREVIOUS_VERSION}/refs\/tags\/v${VERSION}/g" "oss/airbyte-api/manifest-server-api/build.gradle.kts"
379381
echo ${VERSION} > oss/airbyte-connector-builder-resources/CDK_VERSION
380382
cd oss/airbyte-connector-builder-server
381383
python -m pip install --no-cache-dir pip-tools

.github/workflows/pytest_fast.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ jobs:
1515
uses: actions/checkout@v4
1616

1717
- name: Set up Poetry
18-
uses: Gr1N/setup-poetry@v9
18+
uses: snok/install-poetry@v1
1919
with:
20-
poetry-version: "2.0.1"
20+
version: "2.0.1"
2121

2222
- name: Check Poetry lock file is current
2323
run: poetry check
@@ -42,9 +42,9 @@ jobs:
4242
- name: Checkout code
4343
uses: actions/checkout@v4
4444
- name: Set up Poetry
45-
uses: Gr1N/setup-poetry@v9
45+
uses: snok/install-poetry@v1
4646
with:
47-
poetry-version: "2.0.1"
47+
version: "2.0.1"
4848
- name: Set up Python
4949
uses: actions/setup-python@v5
5050
with:

.github/workflows/pytest_matrix.yml

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,11 @@ jobs:
2828
strategy:
2929
matrix:
3030
python-version: [
31-
"3.10",
32-
"3.11",
33-
# "3.12", # `requests-cache` blocker: https://github.com/airbytehq/airbyte-python-cdk/issues/299
34-
]
31+
"3.10",
32+
"3.11",
33+
"3.12",
34+
"3.13",
35+
]
3536
os: [
3637
Ubuntu,
3738
# Windows, # For now, we don't include Windows in the test matrix.
@@ -58,10 +59,10 @@ jobs:
5859
- 'poetry.lock'
5960
- 'pyproject.toml'
6061
- name: Set up Poetry
61-
uses: Gr1N/setup-poetry@v9
62+
uses: snok/install-poetry@v1
6263
if: steps.changes.outputs.src == 'true'
6364
with:
64-
poetry-version: "2.0.1"
65+
version: "2.0.1"
6566
- name: Set up Python
6667
uses: actions/setup-python@v5
6768
if: steps.changes.outputs.src == 'true'

.github/workflows/python_dependency_analysis.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ jobs:
2626
with:
2727
python-version: "3.10"
2828
- name: Set up Poetry
29-
uses: Gr1N/setup-poetry@v9
29+
uses: snok/install-poetry@v1
3030
with:
31-
poetry-version: "2.0.1"
31+
version: "2.0.1"
3232
- name: Install dependencies
3333
run: poetry install --all-extras
3434

0 commit comments

Comments
 (0)