From 2068473c7bdf8c2fb984a6a40ae76ee7facd7a85 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Trojnara?= Date: Tue, 5 Mar 2024 16:02:21 +0100 Subject: [PATCH] Update to actions/cache@v4 This currently fixes the following warning: 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/. This warning will likely turn into an error when Node.js 16 support is turned off. --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index 991e7a5..88bdc52 100644 --- a/action.yml +++ b/action.yml @@ -75,7 +75,7 @@ runs: # Cache miss will add ~30s to create, but cache hit will save minutes. - name: Cache Coverity Build Tool id: cov-build-cache - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ inputs.working-directory }}/cov-analysis key: cov-build-${{ inputs.build_language }}-${{ inputs.build_platform }}-${{ steps.coverity-cache-lookup.outputs.hash }}