25
25
run_tests : ${{ steps.check.outputs.run_tests }}
26
26
run_ssl_tests : ${{ steps.check.outputs.run_ssl_tests }}
27
27
steps :
28
- - uses : actions/checkout@v3
28
+ - uses : actions/checkout@v4
29
29
- name : Check for source changes
30
30
id : check
31
31
run : |
57
57
needs : check_source
58
58
if : needs.check_source.outputs.run_tests == 'true'
59
59
steps :
60
- - uses : actions/checkout@v2
61
- - uses : actions/setup-python@v2
60
+ - uses : actions/checkout@v4
61
+ - uses : actions/setup-python@v4
62
62
- name : Install Dependencies
63
63
run : |
64
64
sudo ./.github/workflows/posix-deps-apt.sh
79
79
needs : check_source
80
80
if : needs.check_source.outputs.run_tests == 'true'
81
81
steps :
82
- - uses : actions/checkout@v3
83
- - uses : actions/setup-python@v3
82
+ - uses : actions/checkout@v4
83
+ - uses : actions/setup-python@v4
84
84
- name : Install Dependencies
85
85
run : sudo ./.github/workflows/posix-deps-apt.sh
86
86
- name : Add ccache to PATH
@@ -119,7 +119,7 @@ jobs:
119
119
needs : check_source
120
120
if : needs.check_source.outputs.run_tests == 'true'
121
121
steps :
122
- - uses : actions/checkout@v3
122
+ - uses : actions/checkout@v4
123
123
- name : Build CPython
124
124
run : .\PCbuild\build.bat -e -p Win32
125
125
- name : Display build info
@@ -133,7 +133,7 @@ jobs:
133
133
needs : check_source
134
134
if : needs.check_source.outputs.run_tests == 'true'
135
135
steps :
136
- - uses : actions/checkout@v3
136
+ - uses : actions/checkout@v4
137
137
- name : Build CPython
138
138
run : .\PCbuild\build.bat -e -p x64
139
139
- name : Display build info
@@ -152,7 +152,7 @@ jobs:
152
152
HOMEBREW_NO_INSTALL_CLEANUP : 1
153
153
PYTHONSTRICTEXTENSIONBUILD : 1
154
154
steps :
155
- - uses : actions/checkout@v3
155
+ - uses : actions/checkout@v4
156
156
- name : Install Homebrew dependencies
157
157
run :
brew install pkg-config [email protected] xz gdbm tcl-tk
158
158
- name : Configure CPython
@@ -181,7 +181,7 @@ jobs:
181
181
OPENSSL_VER : 1.1.1v
182
182
PYTHONSTRICTEXTENSIONBUILD : 1
183
183
steps :
184
- - uses : actions/checkout@v3
184
+ - uses : actions/checkout@v4
185
185
- name : Install Dependencies
186
186
run : sudo ./.github/workflows/posix-deps-apt.sh
187
187
- name : Configure OpenSSL env vars
@@ -227,7 +227,7 @@ jobs:
227
227
OPENSSL_DIR : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
228
228
LD_LIBRARY_PATH : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
229
229
steps :
230
- - uses : actions/checkout@v3
230
+ - uses : actions/checkout@v4
231
231
- name : Install Dependencies
232
232
run : sudo ./.github/workflows/posix-deps-apt.sh
233
233
- name : Configure OpenSSL env vars
0 commit comments