34
34
run_tests : ${{ steps.check.outputs.run_tests }}
35
35
run_ssl_tests : ${{ steps.check.outputs.run_ssl_tests }}
36
36
steps :
37
- - uses : actions/checkout@v3
37
+ - uses : actions/checkout@v4
38
38
- name : Check for source changes
39
39
id : check
40
40
run : |
66
66
needs : check_source
67
67
if : needs.check_source.outputs.run_tests == 'true'
68
68
steps :
69
- - uses : actions/checkout@v2
70
- - uses : actions/setup-python@v2
69
+ - uses : actions/checkout@v4
70
+ - uses : actions/setup-python@v4
71
71
- name : Install Dependencies
72
72
run : |
73
73
sudo ./.github/workflows/posix-deps-apt.sh
96
96
needs : check_source
97
97
if : needs.check_source.outputs.run_tests == 'true'
98
98
steps :
99
- - uses : actions/checkout@v3
100
- - uses : actions/setup-python@v3
99
+ - uses : actions/checkout@v4
100
+ - uses : actions/setup-python@v4
101
101
- name : Install Dependencies
102
102
run : sudo ./.github/workflows/posix-deps-apt.sh
103
103
- name : Add ccache to PATH
@@ -142,7 +142,7 @@ jobs:
142
142
env :
143
143
IncludeUwp : ' true'
144
144
steps :
145
- - uses : actions/checkout@v3
145
+ - uses : actions/checkout@v4
146
146
- name : Build CPython
147
147
run : .\PCbuild\build.bat -e -p Win32
148
148
- name : Display build info
@@ -158,7 +158,7 @@ jobs:
158
158
env :
159
159
IncludeUwp : ' true'
160
160
steps :
161
- - uses : actions/checkout@v3
161
+ - uses : actions/checkout@v4
162
162
- name : Register MSVC problem matcher
163
163
run : echo "::add-matcher::.github/problem-matchers/msvc.json"
164
164
- name : Build CPython
@@ -179,7 +179,7 @@ jobs:
179
179
HOMEBREW_NO_INSTALL_CLEANUP : 1
180
180
PYTHONSTRICTEXTENSIONBUILD : 1
181
181
steps :
182
- - uses : actions/checkout@v3
182
+ - uses : actions/checkout@v4
183
183
- name : Install Homebrew dependencies
184
184
run : brew install pkg-config openssl@3.0 xz gdbm tcl-tk
185
185
- name : Configure CPython
@@ -206,7 +206,7 @@ jobs:
206
206
OPENSSL_VER : 1.1.1v
207
207
PYTHONSTRICTEXTENSIONBUILD : 1
208
208
steps :
209
- - uses : actions/checkout@v3
209
+ - uses : actions/checkout@v4
210
210
- name : Register gcc problem matcher
211
211
run : echo "::add-matcher::.github/problem-matchers/gcc.json"
212
212
- name : Install Dependencies
@@ -254,7 +254,7 @@ jobs:
254
254
OPENSSL_DIR : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
255
255
LD_LIBRARY_PATH : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
256
256
steps :
257
- - uses : actions/checkout@v3
257
+ - uses : actions/checkout@v4
258
258
- name : Register gcc problem matcher
259
259
run : echo "::add-matcher::.github/problem-matchers/gcc.json"
260
260
- name : Install Dependencies
0 commit comments