4242 run_hypothesis : ${{ steps.check.outputs.run_hypothesis }}
4343 config_hash : ${{ steps.config_hash.outputs.hash }}
4444 steps :
45- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
45+ - uses : actions/checkout@v3
4646 - name : Check for source changes
4747 id : check
4848 run : |
@@ -123,7 +123,7 @@ jobs:
123123 needs : check_source
124124 if : needs.check_source.outputs.run_tests == 'true'
125125 steps :
126- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
126+ - uses : actions/checkout@v3
127127 - name : Restore config.cache
128128 uses : actions/cache@v3
129129 with :
@@ -186,7 +186,7 @@ jobs:
186186 env :
187187 IncludeUwp : ' true'
188188 steps :
189- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
189+ - uses : actions/checkout@v3
190190 - name : Build CPython
191191 run : .\PCbuild\build.bat -e -d -p Win32
192192 - name : Display build info
@@ -203,7 +203,7 @@ jobs:
203203 env :
204204 IncludeUwp : ' true'
205205 steps :
206- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
206+ - uses : actions/checkout@v3
207207 - name : Register MSVC problem matcher
208208 run : echo "::add-matcher::.github/problem-matchers/msvc.json"
209209 - name : Build CPython
@@ -225,7 +225,7 @@ jobs:
225225 HOMEBREW_NO_INSTALL_CLEANUP : 1
226226 PYTHONSTRICTEXTENSIONBUILD : 1
227227 steps :
228- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
228+ - uses : actions/checkout@v3
229229 - name : Restore config.cache
230230 uses : actions/cache@v3
231231 with :
@@ -260,7 +260,7 @@ jobs:
260260 OPENSSL_VER : 1.1.1u
261261 PYTHONSTRICTEXTENSIONBUILD : 1
262262 steps :
263- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
263+ - uses : actions/checkout@v3
264264 - name : Register gcc problem matcher
265265 run : echo "::add-matcher::.github/problem-matchers/gcc.json"
266266 - name : Install Dependencies
@@ -272,7 +272,7 @@ jobs:
272272 echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
273273 - name : ' Restore OpenSSL build'
274274 id : cache-openssl
275- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
275+ uses : actions/cache@v3
276276 with :
277277 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
278278 key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -333,7 +333,7 @@ jobs:
333333 OPENSSL_DIR : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
334334 LD_LIBRARY_PATH : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
335335 steps :
336- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
336+ - uses : actions/checkout@v3
337337 - name : Restore config.cache
338338 uses : actions/cache@v3
339339 with :
@@ -350,7 +350,7 @@ jobs:
350350 echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
351351 - name : ' Restore OpenSSL build'
352352 id : cache-openssl
353- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
353+ uses : actions/cache@v3
354354 with :
355355 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
356356 key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -381,7 +381,7 @@ jobs:
381381 OPENSSL_VER : 1.1.1u
382382 PYTHONSTRICTEXTENSIONBUILD : 1
383383 steps :
384- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
384+ - uses : actions/checkout@v3
385385 - name : Register gcc problem matcher
386386 run : echo "::add-matcher::.github/problem-matchers/gcc.json"
387387 - name : Install Dependencies
@@ -393,7 +393,7 @@ jobs:
393393 echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
394394 - name : ' Restore OpenSSL build'
395395 id : cache-openssl
396- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
396+ uses : actions/cache@v3
397397 with :
398398 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
399399 key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -491,7 +491,7 @@ jobs:
491491 PYTHONSTRICTEXTENSIONBUILD : 1
492492 ASAN_OPTIONS : detect_leaks=0:allocator_may_return_null=1:handle_segv=0
493493 steps :
494- - uses : actions/checkout@8e5e7e5ab8b370d6c329ec480221332ada57f0ab # v3.5.2
494+ - uses : actions/checkout@v3
495495 - name : Restore config.cache
496496 uses : actions/cache@v3
497497 with :
@@ -512,7 +512,7 @@ jobs:
512512 echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> $GITHUB_ENV
513513 - name : ' Restore OpenSSL build'
514514 id : cache-openssl
515- uses : actions/cache@88522ab9f39a2ea568f7027eddc7d8d8bc9d59c8 # v3.3.1
515+ uses : actions/cache@v3
516516 with :
517517 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
518518 key : ${{ runner.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
0 commit comments