3232 run_ssl_tests : ${{ steps.check.outputs.run_ssl_tests }}
3333 config_hash : ${{ steps.config_hash.outputs.hash }}
3434 steps :
35- - uses : actions/checkout@v4
35+ - uses : actions/checkout@v6
3636 - name : Check for source changes
3737 id : check
3838 run : |
@@ -91,10 +91,10 @@ jobs:
9191 needs : check_source
9292 if : needs.check_source.outputs.run_tests == 'true'
9393 steps :
94- - uses : actions/checkout@v4
94+ - uses : actions/checkout@v6
9595 with :
9696 persist-credentials : false
97- - uses : actions/setup-python@v5
97+ - uses : actions/setup-python@v6
9898 - name : Install dependencies
9999 run : |
100100 sudo ./.github/workflows/posix-deps-apt.sh
@@ -123,7 +123,7 @@ jobs:
123123 if : ${{ failure() && steps.check.conclusion == 'failure' }}
124124 run : |
125125 make regen-abidump
126- - uses : actions/upload-artifact@v4
126+ - uses : actions/upload-artifact@v6
127127 name : Publish updated ABI files
128128 if : ${{ failure() && steps.check.conclusion == 'failure' }}
129129 with :
@@ -139,16 +139,16 @@ jobs:
139139 needs : check_source
140140 if : needs.check_source.outputs.run_tests == 'true'
141141 steps :
142- - uses : actions/checkout@v4
142+ - uses : actions/checkout@v6
143143 with :
144144 persist-credentials : false
145- - uses : actions/setup-python@v5
145+ - uses : actions/setup-python@v6
146146 with :
147147 python-version : ' 3.x'
148148 - name : Runner image version
149149 run : echo "IMAGE_OS_VERSION=${ImageOS}-${ImageVersion}" >> "$GITHUB_ENV"
150150 - name : Restore config.cache
151- uses : actions/cache@v4
151+ uses : actions/cache@v5
152152 with :
153153 path : config.cache
154154 # Include env.pythonLocation in key to avoid changes in environment when setup-python updates Python
@@ -243,13 +243,13 @@ jobs:
243243 OPENSSL_DIR : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}
244244 LD_LIBRARY_PATH : ${{ github.workspace }}/multissl/openssl/${{ matrix.openssl_ver }}/lib
245245 steps :
246- - uses : actions/checkout@v4
246+ - uses : actions/checkout@v6
247247 with :
248248 persist-credentials : false
249249 - name : Runner image version
250250 run : echo "IMAGE_OS_VERSION=${ImageOS}-${ImageVersion}" >> "$GITHUB_ENV"
251251 - name : Restore config.cache
252- uses : actions/cache@v4
252+ uses : actions/cache@v5
253253 with :
254254 path : config.cache
255255 key : ${{ github.job }}-${{ env.IMAGE_OS_VERSION }}-${{ needs.check_source.outputs.config_hash }}
@@ -264,7 +264,7 @@ jobs:
264264 echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> "$GITHUB_ENV"
265265 - name : ' Restore OpenSSL build'
266266 id : cache-openssl
267- uses : actions/cache@v4
267+ uses : actions/cache@v5
268268 with :
269269 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
270270 key : ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
@@ -298,13 +298,13 @@ jobs:
298298 PYTHONSTRICTEXTENSIONBUILD : 1
299299 ASAN_OPTIONS : detect_leaks=0:allocator_may_return_null=1:handle_segv=0
300300 steps :
301- - uses : actions/checkout@v4
301+ - uses : actions/checkout@v6
302302 with :
303303 persist-credentials : false
304304 - name : Runner image version
305305 run : echo "IMAGE_OS_VERSION=${ImageOS}-${ImageVersion}" >> "$GITHUB_ENV"
306306 - name : Restore config.cache
307- uses : actions/cache@v4
307+ uses : actions/cache@v5
308308 with :
309309 path : config.cache
310310 key : ${{ github.job }}-${{ env.IMAGE_OS_VERSION }}-${{ needs.check_source.outputs.config_hash }}
@@ -313,7 +313,7 @@ jobs:
313313 - name : Install dependencies
314314 run : sudo ./.github/workflows/posix-deps-apt.sh
315315 - name : Set up GCC-10 for ASAN
316- uses : egor-tensin/setup-gcc@v1
316+ uses : egor-tensin/setup-gcc@v2
317317 with :
318318 version : 10
319319 - name : Configure OpenSSL env vars
@@ -323,7 +323,7 @@ jobs:
323323 echo "LD_LIBRARY_PATH=${GITHUB_WORKSPACE}/multissl/openssl/${OPENSSL_VER}/lib" >> "$GITHUB_ENV"
324324 - name : ' Restore OpenSSL build'
325325 id : cache-openssl
326- uses : actions/cache@v4
326+ uses : actions/cache@v5
327327 with :
328328 path : ./multissl/openssl/${{ env.OPENSSL_VER }}
329329 key : ${{ matrix.os }}-multissl-openssl-${{ env.OPENSSL_VER }}
0 commit comments