CI: Update to actions/cache@v3

No functional changes for our use case, but we should keep this current.
This commit is contained in:
Tim Duesterhus 2022-04-09 22:08:42 +02:00 committed by Willy Tarreau
parent 5f4ddb54b0
commit 538d8fe8b7

View File

@ -58,7 +58,7 @@ jobs:
- name: Cache SSL libs - name: Cache SSL libs
if: ${{ matrix.ssl && matrix.ssl != 'stock' && matrix.ssl != 'BORINGSSL=yes' && matrix.ssl != 'QUICTLS=yes' }} if: ${{ matrix.ssl && matrix.ssl != 'stock' && matrix.ssl != 'BORINGSSL=yes' && matrix.ssl != 'QUICTLS=yes' }}
id: cache_ssl id: cache_ssl
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: '~/opt/' path: '~/opt/'
key: ssl-${{ steps.generate-cache-key.outputs.key }} key: ssl-${{ steps.generate-cache-key.outputs.key }}
@ -66,7 +66,7 @@ jobs:
- name: Cache OpenTracing - name: Cache OpenTracing
if: ${{ contains(matrix.FLAGS, 'USE_OT=1') }} if: ${{ contains(matrix.FLAGS, 'USE_OT=1') }}
id: cache_ot id: cache_ot
uses: actions/cache@v2 uses: actions/cache@v3
with: with:
path: '~/opt-ot/' path: '~/opt-ot/'
key: ot-${{ matrix.CC }}-${{ env.OT_CPP_VERSION }}-${{ contains(matrix.name, 'ASAN') }} key: ot-${{ matrix.CC }}-${{ env.OT_CPP_VERSION }}-${{ contains(matrix.name, 'ASAN') }}