42
42
run_hypothesis : ${{ steps.check.outputs.run_hypothesis }}
43
43
config_hash : ${{ steps.config_hash.outputs.hash }}
44
44
steps :
45
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
45
+ - uses : actions/checkout@v3
46
46
- name : Check for source changes
47
47
id : check
48
48
run : |
@@ -123,9 +123,9 @@ jobs:
123
123
needs : check_source
124
124
if : needs.check_source.outputs.run_tests == 'true'
125
125
steps :
126
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
126
+ - uses : actions/checkout@v3
127
127
- name : Restore config.cache
128
- uses : actions/cache @v3
128
+ - uses : actions/setup-python @v3
129
129
with :
130
130
path : config.cache
131
131
key : ${{ github.job }}-${{ runner.os }}-${{ needs.check_source.outputs.config_hash }}
@@ -186,7 +186,7 @@ jobs:
186
186
env :
187
187
IncludeUwp : ' true'
188
188
steps :
189
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
189
+ - uses : actions/checkout@v3
190
190
- name : Build CPython
191
191
run : .\PCbuild\build.bat -e -d -p Win32
192
192
- name : Display build info
@@ -203,7 +203,7 @@ jobs:
203
203
env :
204
204
IncludeUwp : ' true'
205
205
steps :
206
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
206
+ - uses : actions/checkout@v3
207
207
- name : Register MSVC problem matcher
208
208
run : echo "::add-matcher::.github/problem-matchers/msvc.json"
209
209
- name : Build CPython
@@ -225,7 +225,7 @@ jobs:
225
225
HOMEBREW_NO_INSTALL_CLEANUP : 1
226
226
PYTHONSTRICTEXTENSIONBUILD : 1
227
227
steps :
228
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
228
+ - uses : actions/checkout@v3
229
229
- name : Restore config.cache
230
230
uses : actions/cache@v3
231
231
with :
@@ -260,7 +260,7 @@ jobs:
260
260
OPENSSL_VER : 1.1.1u
261
261
PYTHONSTRICTEXTENSIONBUILD : 1
262
262
steps :
263
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
263
+ - uses : actions/checkout@v3
264
264
- name : Register gcc problem matcher
265
265
run : echo "::add-matcher::.github/problem-matchers/gcc.json"
266
266
- name : Install Dependencies
@@ -272,7 +272,7 @@ jobs:
272
272
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
273
273
- name : ' Restore OpenSSL build'
274
274
id : cache-openssl
275
- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
275
+ uses : actions/cache@v3
276
276
with :
277
277
path : ./multissl/openssl/${{ env.OPENSSL_VER }}
278
278
key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -333,7 +333,7 @@ jobs:
333
333
OPENSSL_DIR : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
334
334
LD_LIBRARY_PATH : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
335
335
steps :
336
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
336
+ - uses : actions/checkout@v3
337
337
- name : Restore config.cache
338
338
uses : actions/cache@v3
339
339
with :
@@ -350,7 +350,7 @@ jobs:
350
350
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
351
351
- name : ' Restore OpenSSL build'
352
352
id : cache-openssl
353
- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
353
+ uses : actions/cache@v3
354
354
with :
355
355
path : ./multissl/openssl/${{ env.OPENSSL_VER }}
356
356
key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -381,7 +381,7 @@ jobs:
381
381
OPENSSL_VER : 1.1.1u
382
382
PYTHONSTRICTEXTENSIONBUILD : 1
383
383
steps :
384
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
384
+ - uses : actions/checkout@v3
385
385
- name : Register gcc problem matcher
386
386
run : echo "::add-matcher::.github/problem-matchers/gcc.json"
387
387
- name : Install Dependencies
@@ -393,7 +393,7 @@ jobs:
393
393
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
394
394
- name : ' Restore OpenSSL build'
395
395
id : cache-openssl
396
- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
396
+ uses : actions/cache@v3
397
397
with :
398
398
path : ./multissl/openssl/${{ env.OPENSSL_VER }}
399
399
key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -491,7 +491,7 @@ jobs:
491
491
PYTHONSTRICTEXTENSIONBUILD : 1
492
492
ASAN_OPTIONS : detect_leaks=0:allocator_may_return_null=1:handle_segv=0
493
493
steps :
494
- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
494
+ - uses : actions/checkout@v3
495
495
- name : Restore config.cache
496
496
uses : actions/cache@v3
497
497
with :
@@ -512,7 +512,7 @@ jobs:
512
512
echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
513
513
- name : ' Restore OpenSSL build'
514
514
id : cache-openssl
515
- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
515
+ uses : actions/cache@v3
516
516
with :
517
517
path : ./multissl/openssl/${{ env.OPENSSL_VER }}
518
518
key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
0 commit comments