CI: Update to actions/cache@v3
No functional changes for our use case, but we should keep this current.
(cherry picked from commit 538d8fe8b7a5c06ca9e466f6d71a06b962b232e2)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
(cherry picked from commit c8c8cad3732a8e12734f17dfacd45b46f7c71b9d)
Signed-off-by: Christopher Faulet <cfaulet@haproxy.com>
diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml
index cbec75a..ea39662 100644
--- a/.github/workflows/vtest.yml
+++ b/.github/workflows/vtest.yml
@@ -55,7 +55,7 @@
- name: Cache SSL libs
if: ${{ matrix.ssl && matrix.ssl != 'stock' && matrix.ssl != 'BORINGSSL=yes' && matrix.ssl != 'QUICTLS=yes' }}
id: cache_ssl
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: '~/opt/'
key: ssl-${{ steps.generate-cache-key.outputs.key }}
@@ -63,7 +63,7 @@
- name: Cache OpenTracing
if: ${{ contains(matrix.FLAGS, 'USE_OT=1') }}
id: cache_ot
- uses: actions/cache@v2
+ uses: actions/cache@v3
with:
path: '~/opt-ot/'
key: ot-${{ matrix.CC }}-${{ env.OT_CPP_VERSION }}-${{ contains(matrix.name, 'ASAN') }}