Skip to content
Merged
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
2 changes: 1 addition & 1 deletion .github/workflows/autofix.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/fix-pr-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:

# Custom steps to fetch the PR and checkout the code:
- name: Checkout Airbyte
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Important that this is set so that CI checks are triggered again
# Without this we would be forever waiting on required checks to pass
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/poetry-lock-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ jobs:

# Custom steps to fetch the PR and checkout the code:
- name: Checkout Airbyte
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# Important that this is set so that CI checks are triggered again
# Without this we would be forever waiting on required checks to pass
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pydoc_preview.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pydoc_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:

steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5
with:
fetch-depth: 0
- uses: hynek/build-and-inspect-python-package@v2
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/python_lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ jobs:
steps:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand All @@ -39,7 +39,7 @@ jobs:
steps:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand All @@ -62,7 +62,7 @@ jobs:
steps:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/python_pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
steps:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:
steps:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand Down Expand Up @@ -163,7 +163,7 @@ jobs:
steps:
# Common steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Poetry
uses: Gr1N/setup-poetry@v9
with:
Expand Down Expand Up @@ -225,7 +225,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
uses: actions/checkout@v5
- name: Set up Python
uses: actions/setup-python@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-pr-command.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ jobs:
private-key: ${{ secrets.OCTAVIA_BOT_PRIVATE_KEY }}

- name: Checkout PR
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
token: ${{ secrets.GITHUB_TOKEN }}
ref: ${{ needs.start-workflow.outputs.commit-sha }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/welcome-message.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
runs-on: ubuntu-24.04
steps:
- name: Checkout repository
uses: actions/checkout@v4
uses: actions/checkout@v5

- name: Resolve workflow variables
id: vars
Expand Down
Loading