]> git.ipfire.org Git - thirdparty/haproxy.git/commitdiff
CI: Update to actions/cache@v4
authorTim Duesterhus <tim@bastelstu.be>
Thu, 8 Feb 2024 18:55:23 +0000 (19:55 +0100)
committerWilly Tarreau <w@1wt.eu>
Sat, 10 Feb 2024 04:12:20 +0000 (05:12 +0100)
No functional change, but this upgrade is required, due to the v3 runtime being
deprecated:

> Node.js 16 actions are deprecated. Please update the following actions to use
> Node.js 20: actions/cache@v3. For more information see:
> https://github.blog/changelog/2023-09-22-github-actions-transitioning-from-node-16-to-node-20/.

.github/workflows/aws-lc.yml
.github/workflows/vtest.yml

index 34a803026fcc1ac1966f59b5ea1d215cd9bfd202..e590000ba6191581d458a3de1ad92e3504892d26 100644 (file)
@@ -24,7 +24,7 @@ jobs:
           echo "result=$result" >> $GITHUB_OUTPUT
       - name: Cache AWS-LC
         id: cache_aws_lc
-        uses: actions/cache@v3
+        uses: actions/cache@v4
         with:
           path: '~/opt/'
           key: ssl-${{ steps.get_aws_lc_release.outputs.result }}-Ubuntu-latest-gcc
index 6246718726c93f90340092a30e8a0e28b217a452..7b5254b04bf11c1e4ecfd2eb4e9bf9e82d668306 100644 (file)
@@ -60,7 +60,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@v3
+      uses: actions/cache@v4
       with:
         path: '~/opt/'
         key: ssl-${{ steps.generate-cache-key.outputs.key }}
@@ -68,7 +68,7 @@ jobs:
     - name: Cache OpenTracing
       if: ${{ contains(matrix.FLAGS, 'USE_OT=1') }}
       id: cache_ot
-      uses: actions/cache@v3
+      uses: actions/cache@v4
       with:
         path: '~/opt-ot/'
         key: ot-${{ matrix.CC }}-${{ env.OT_CPP_VERSION }}-${{ contains(matrix.name, 'ASAN') }}