File tree Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Expand file tree Collapse file tree 5 files changed +11
-11
lines changed Original file line number Diff line number Diff line change 13
13
using : composite
14
14
steps :
15
15
- name : Set up Python
16
- uses : actions/setup-python@v5
16
+ uses : actions/setup-python@v6
17
17
with :
18
18
python-version : ${{ inputs.python-version }}
19
19
Original file line number Diff line number Diff line change 25
25
# get the sha of the last commit to attach the results of the tests
26
26
if : always()
27
27
id : get-branch-info
28
- uses : actions/github-script@v7
28
+ uses : actions/github-script@v8
29
29
with :
30
30
github-token : ${{ secrets.GITHUB_TOKEN }}
31
31
script : |
39
39
core.setOutput('repository', pr.data.head.repo.full_name)
40
40
41
41
- name : Checkout code on the correct branch
42
- uses : actions/checkout@v4
42
+ uses : actions/checkout@v5
43
43
with :
44
44
# context is not aware which branch to checkout so it would otherwise
45
45
# default to main (we also need repo name to source from the right user
61
61
- name : Report results of the tests and publish
62
62
# publish the results to a check run no matter the pass or fail
63
63
if : always()
64
- uses : actions/github-script@v7
64
+ uses : actions/github-script@v8
65
65
with :
66
66
github-token : ${{ secrets.GITHUB_TOKEN }}
67
67
script : |
Original file line number Diff line number Diff line change 12
12
timeout-minutes : 10
13
13
14
14
steps :
15
- - uses : actions/checkout@v3
15
+ - uses : actions/checkout@v5
16
16
17
17
- name : Install project dependencies
18
18
uses : ./.github/setup
28
28
timeout-minutes : 10
29
29
30
30
steps :
31
- - uses : actions/checkout@v3
31
+ - uses : actions/checkout@v5
32
32
33
33
- name : Install project dependencies
34
34
uses : ./.github/setup
44
44
timeout-minutes : 10
45
45
46
46
steps :
47
- - uses : actions/checkout@v3
47
+ - uses : actions/checkout@v5
48
48
49
49
- name : Install project dependencies
50
50
uses : ./.github/setup
Original file line number Diff line number Diff line change 24
24
name : OS ${{ matrix.os }} - Python ${{ matrix.python-version }}
25
25
26
26
steps :
27
- - uses : actions/checkout@v4
27
+ - uses : actions/checkout@v5
28
28
29
29
- name : Install project dependencies
30
30
uses : ./.github/setup
55
55
timeout-minutes : 10
56
56
57
57
steps :
58
- - uses : actions/checkout@v4
58
+ - uses : actions/checkout@v5
59
59
60
- -
uses :
pre-commit/[email protected] .0
60
+ -
uses :
pre-commit/[email protected] .1
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ pyarrow = ">=10.0.1"
42
42
pytest = " >=8.4.2"
43
43
pyright = " >=1.1.405"
44
44
ty = " >=0.0.1a21"
45
- pyrefly = " >=0.34 .0"
45
+ pyrefly = " >=0.35 .0"
46
46
poethepoet = " >=0.16.5"
47
47
loguru = " >=0.6.0"
48
48
typing-extensions = " >=4.4.0"
You can’t perform that action at this time.
0 commit comments