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 @@ -16,12 +16,12 @@ jobs:
16
16
shell : bash -el {0}
17
17
18
18
steps :
19
- - uses : actions/checkout@v3
19
+ - uses : actions/checkout@v4
20
20
with :
21
21
fetch-depth : 0
22
22
23
23
- name : Install Python
24
- uses : actions/setup-python@v3
24
+ uses : actions/setup-python@v5
25
25
with :
26
26
python-version : ' 3.9'
27
27
Original file line number Diff line number Diff line change 6
6
runs-on : ubuntu-latest
7
7
steps :
8
8
- name : Checkout source
9
- uses : actions/checkout@v3
9
+ uses : actions/checkout@v4
10
10
- name : Install Python 3.11
11
- uses : actions/setup-python@v4
11
+ uses : actions/setup-python@v5
12
12
with :
13
13
python-version : ' 3.11'
14
14
- name : Install Flake8 5.0.4 linter
Original file line number Diff line number Diff line change @@ -15,12 +15,12 @@ jobs:
15
15
runs-on : ubuntu-latest
16
16
steps :
17
17
# fetch all commits and tags so versioneer works
18
- - uses : actions/checkout@v2
18
+ - uses : actions/checkout@v4
19
19
with :
20
20
fetch-depth : 0
21
21
22
22
- name : Set up Python
23
- uses : actions/setup-python@v2
23
+ uses : actions/setup-python@v5
24
24
with :
25
25
python-version : 3.9
26
26
Original file line number Diff line number Diff line change @@ -66,18 +66,18 @@ jobs:
66
66
if : (github.event_name == 'pull_request_target' && contains(github.event.pull_request.labels.*.name, 'remote-data')) || (github.event_name == 'push')
67
67
68
68
steps :
69
- - uses : actions/checkout@v3
69
+ - uses : actions/checkout@v4
70
70
if : github.event_name == 'pull_request_target'
71
71
# pull_request_target runs in the context of the target branch (pvlib/main),
72
72
# but what we need is the hypothetical merge commit from the PR:
73
73
with :
74
74
ref : " refs/pull/${{ github.event.number }}/merge"
75
75
76
- - uses : actions/checkout@v2
76
+ - uses : actions/checkout@v4
77
77
if : github.event_name == 'push'
78
78
79
79
- name : Set up conda environment
80
- uses : conda-incubator/setup-miniconda@v2
80
+ uses : conda-incubator/setup-miniconda@v3
81
81
with :
82
82
activate-environment : test_env
83
83
environment-file : ${{ env.REQUIREMENTS }}
Original file line number Diff line number Diff line change 31
31
steps :
32
32
# We check out only a limited depth and then pull tags to save time
33
33
- name : Checkout source
34
- uses : actions/checkout@v3
34
+ uses : actions/checkout@v4
35
35
with :
36
36
fetch-depth : 100
37
37
60
60
61
61
- name : Install bare Python ${{ matrix.python-version }}${{ matrix.suffix }}
62
62
if : matrix.environment-type == 'bare'
63
- uses : actions/setup-python@v4
63
+ uses : actions/setup-python@v5
64
64
with :
65
65
python-version : ${{ matrix.python-version }}
66
66
You can’t perform that action at this time.
0 commit comments