Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .github/workflows/autofix-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,13 @@ jobs:

[1]: ${{ steps.vars.outputs.run-url }}

- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
7 changes: 6 additions & 1 deletion .github/workflows/connector-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,10 +125,15 @@ jobs:
repository: airbytehq/airbyte
ref: master
path: airbyte
- name: Get tool versions
if: steps.no_changes.outputs.status != 'cancelled'
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Python
if: steps.no_changes.outputs.status != 'cancelled'
uses: actions/setup-python@v5
with:
python-version: "3.11"
python-version: ${{ steps.tool-versions.outputs.python }}
# Create initial pending status for test report
- name: Create Pending Test Report Status
if: steps.no_changes.outputs.status != 'cancelled'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pdoc_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,14 +13,17 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
cache: "poetry"

- name: Install dependencies
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/pdoc_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,17 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
cache: "poetry"
- name: Setup Pages
uses: actions/configure-pages@v5
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/poetry-lock-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -80,10 +80,13 @@ jobs:

[1]: ${{ steps.vars.outputs.run-url }}

- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -272,9 +272,12 @@ jobs:
IS_PRERELEASE: ${{ needs.build.outputs.IS_PRERELEASE }}
runs-on: ubuntu-24.04
steps:
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
- name: Checkout Airbyte Platform Internal
uses: actions/checkout@v4
with:
Expand Down
12 changes: 9 additions & 3 deletions .github/workflows/pytest_fast.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4

- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}

- name: Check Poetry lock file is current
run: poetry check
Expand All @@ -41,14 +44,17 @@ jobs:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
cache: "poetry"
- name: Install dependencies
run: poetry install --all-extras
Expand Down
6 changes: 5 additions & 1 deletion .github/workflows/pytest_matrix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,11 +57,15 @@ jobs:
- 'bin/**'
- 'poetry.lock'
- 'pyproject.toml'
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
if: steps.changes.outputs.src == 'true'
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
if: steps.changes.outputs.src == 'true'
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
if: steps.changes.outputs.src == 'true'
Expand Down
7 changes: 5 additions & 2 deletions .github/workflows/python_dependency_analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,17 @@ jobs:
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Install dependencies
run: poetry install --all-extras

Expand Down
21 changes: 15 additions & 6 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,17 @@ jobs:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
cache: "poetry"
- name: Install dependencies
run: poetry install --all-extras
Expand All @@ -37,14 +40,17 @@ jobs:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "1.8.4"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
cache: "poetry"
- name: Install dependencies
run: poetry install --all-extras
Expand All @@ -60,14 +66,17 @@ jobs:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "1.8.4"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.10"
python-version: ${{ steps.tool-versions.outputs.python }}
cache: "poetry"
- name: Install dependencies
run: poetry install --all-extras
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/test-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,10 +82,13 @@ jobs:

# Same as the `python_pytest.yml` file:

- name: Get tool versions
uses: marocchino/tool-versions-action@v1
id: tool-versions
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
poetry-version: "2.0.1"
poetry-version: ${{ steps.tool-versions.outputs.poetry }}
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 2 additions & 0 deletions .tool-versions
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
python 3.11
Copy link
Copy Markdown
Contributor

@dbgold17 David Gold (dbgold17) Apr 28, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

some workflows are using 3.10 it seems. - worth testing to make sure this bump doesn't break anything. Similarly workflows are not all using the same poetry version

Also unless there's a good reason not to, I like that this makes all workflows use the same versions

poetry 2.0.1
Loading