summaryrefslogtreecommitdiff
path: root/.github
diff options
context:
space:
mode:
authorTim Duesterhus <tim@bastelstu.be>2022-04-09 22:08:42 +0200
committerWilly Tarreau <w@1wt.eu>2022-04-11 07:13:24 +0200
commit538d8fe8b7a5c06ca9e466f6d71a06b962b232e2 (patch)
tree532f1f3aa23e1ffceeace995c3005c476d37a434 /.github
parent5f4ddb54b05ae0355b1f64c22263a6bc381410df (diff)
downloadhaproxy-538d8fe8b7a5c06ca9e466f6d71a06b962b232e2.tar.gz
CI: Update to actions/cache@v3
No functional changes for our use case, but we should keep this current.
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/vtest.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/vtest.yml b/.github/workflows/vtest.yml
index e413b20f5..7a1c1ef62 100644
--- a/.github/workflows/vtest.yml
+++ b/.github/workflows/vtest.yml
@@ -58,7 +58,7 @@ jobs:
- 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 }}
@@ -66,7 +66,7 @@ jobs:
- 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') }}