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/setup/action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ runs:
using: composite
steps:
- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ inputs.python-version }}

Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/comment_commands.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
# get the sha of the last commit to attach the results of the tests
if: always()
id: get-branch-info
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand All @@ -39,7 +39,7 @@ jobs:
core.setOutput('repository', pr.data.head.repo.full_name)

- name: Checkout code on the correct branch
uses: actions/checkout@v4
uses: actions/checkout@v5
with:
# context is not aware which branch to checkout so it would otherwise
# default to main (we also need repo name to source from the right user
Expand All @@ -61,7 +61,7 @@ jobs:
- name: Report results of the tests and publish
# publish the results to a check run no matter the pass or fail
if: always()
uses: actions/github-script@v7
uses: actions/github-script@v8
with:
github-token: ${{ secrets.GITHUB_TOKEN }}
script: |
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/optional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Install project dependencies
uses: ./.github/setup
Expand All @@ -28,7 +28,7 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Install project dependencies
uses: ./.github/setup
Expand All @@ -44,7 +44,7 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v5

- name: Install project dependencies
uses: ./.github/setup
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
name: OS ${{ matrix.os }} - Python ${{ matrix.python-version }}

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- name: Install project dependencies
uses: ./.github/setup
Expand Down Expand Up @@ -55,6 +55,6 @@ jobs:
timeout-minutes: 10

steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v5

- uses: pre-commit/[email protected].0
- uses: pre-commit/[email protected].1
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ pyarrow = ">=10.0.1"
pytest = ">=8.4.2"
pyright = ">=1.1.405"
ty = ">=0.0.1a21"
pyrefly = ">=0.34.0"
pyrefly = ">=0.35.0"
poethepoet = ">=0.16.5"
loguru = ">=0.6.0"
typing-extensions = ">=4.4.0"
Expand Down