Skip to content

Commit 6e51ff5

Browse files
committed
chore(CI): update actions
1 parent a9f0bd3 commit 6e51ff5

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

.github/setup/action.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ runs:
1313
using: composite
1414
steps:
1515
- name: Set up Python
16-
uses: actions/setup-python@v5
16+
uses: actions/setup-python@v6
1717
with:
1818
python-version: ${{ inputs.python-version }}
1919

.github/workflows/comment_commands.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ jobs:
2525
# get the sha of the last commit to attach the results of the tests
2626
if: always()
2727
id: get-branch-info
28-
uses: actions/github-script@v7
28+
uses: actions/github-script@v8
2929
with:
3030
github-token: ${{ secrets.GITHUB_TOKEN }}
3131
script: |
@@ -39,7 +39,7 @@ jobs:
3939
core.setOutput('repository', pr.data.head.repo.full_name)
4040
4141
- name: Checkout code on the correct branch
42-
uses: actions/checkout@v4
42+
uses: actions/checkout@v5
4343
with:
4444
# context is not aware which branch to checkout so it would otherwise
4545
# default to main (we also need repo name to source from the right user
@@ -61,7 +61,7 @@ jobs:
6161
- name: Report results of the tests and publish
6262
# publish the results to a check run no matter the pass or fail
6363
if: always()
64-
uses: actions/github-script@v7
64+
uses: actions/github-script@v8
6565
with:
6666
github-token: ${{ secrets.GITHUB_TOKEN }}
6767
script: |

.github/workflows/optional.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ jobs:
1212
timeout-minutes: 10
1313

1414
steps:
15-
- uses: actions/checkout@v3
15+
- uses: actions/checkout@v5
1616

1717
- name: Install project dependencies
1818
uses: ./.github/setup
@@ -28,7 +28,7 @@ jobs:
2828
timeout-minutes: 10
2929

3030
steps:
31-
- uses: actions/checkout@v3
31+
- uses: actions/checkout@v5
3232

3333
- name: Install project dependencies
3434
uses: ./.github/setup
@@ -44,7 +44,7 @@ jobs:
4444
timeout-minutes: 10
4545

4646
steps:
47-
- uses: actions/checkout@v3
47+
- uses: actions/checkout@v5
4848

4949
- name: Install project dependencies
5050
uses: ./.github/setup

.github/workflows/test.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ jobs:
2424
name: OS ${{ matrix.os }} - Python ${{ matrix.python-version }}
2525

2626
steps:
27-
- uses: actions/checkout@v4
27+
- uses: actions/checkout@v5
2828

2929
- name: Install project dependencies
3030
uses: ./.github/setup
@@ -55,6 +55,6 @@ jobs:
5555
timeout-minutes: 10
5656

5757
steps:
58-
- uses: actions/checkout@v4
58+
- uses: actions/checkout@v5
5959

60-
- uses: pre-commit/[email protected].0
60+
- uses: pre-commit/[email protected].1

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ pyarrow = ">=10.0.1"
4242
pytest = ">=8.4.2"
4343
pyright = ">=1.1.405"
4444
ty = ">=0.0.1a21"
45-
pyrefly = ">=0.34.0"
45+
pyrefly = ">=0.35.0"
4646
poethepoet = ">=0.16.5"
4747
loguru = ">=0.6.0"
4848
typing-extensions = ">=4.4.0"

0 commit comments

Comments
 (0)