18
18
19
19
steps :
20
20
- uses : actions/checkout@v4
21
- - uses : actions/setup-python@v4
21
+ - uses : actions/setup-python@v5
22
22
with :
23
23
python-version : ' 3.x'
24
24
cache : pip
35
35
with :
36
36
fetch-depth : 0
37
37
- name : Set up Python
38
- uses : actions/setup-python@v4
38
+ uses : actions/setup-python@v5
39
39
with :
40
40
python-version : " 3.8"
41
41
cache : pip
57
57
python -m pip install build
58
58
python -m build
59
59
- name : Upload sdist and wheel artifacts
60
- uses : actions/upload-artifact@v3
60
+ uses : actions/upload-artifact@v4
61
61
with :
62
62
name : my-dist
63
63
path : dist/*
74
74
steps :
75
75
- uses : actions/checkout@v4
76
76
- name : Set up Python ${{ matrix.python-version }}
77
- uses : actions/setup-python@v4
77
+ uses : actions/setup-python@v5
78
78
with :
79
79
python-version : ${{ matrix.python-version }}
80
80
cache : pip
89
89
python -m pip install -r dev-requirements.txt
90
90
python -m pip install "sphinx${{ matrix.sphinx-version }}"
91
91
- name : Download sdist and wheel artifacts
92
- uses : actions/download-artifact@v3
92
+ uses : actions/download-artifact@v4
93
93
with :
94
94
name : my-dist
95
95
path : dist
@@ -113,7 +113,7 @@ jobs:
113
113
with :
114
114
fetch-depth : 0
115
115
- name : Setup Python
116
- uses : actions/setup-python@v4
116
+ uses : actions/setup-python@v5
117
117
with :
118
118
python-version : ' 3.x'
119
119
cache : pip
@@ -132,7 +132,7 @@ jobs:
132
132
if : contains(github.ref, 'refs/tags/') && github.repository_owner == 'wpilibsuite'
133
133
steps :
134
134
- name : Download sdist and wheel artifacts
135
- uses : actions/download-artifact@v3
135
+ uses : actions/download-artifact@v4
136
136
with :
137
137
name : my-dist
138
138
path : dist
0 commit comments