From e3612f6bf5996d9a0ba702f903a3b0b28dfd3bf6 Mon Sep 17 00:00:00 2001 From: Juliette <663378+jrfnl@users.noreply.github.com> Date: Fri, 25 Mar 2022 04:07:17 +0100 Subject: [PATCH] GH Actions: version update for actions/cache (#224) A number of predefined actions have had major releases, which warrant an update. The update doesn't actually contain any changed functionality, it's mostly just a change of the Node version used by the action itself (from Node 12 to Node 16), but see the changelog for more info. Refs: * https://github.com/actions/cache/releases/ Co-authored-by: jrfnl --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index f2f6be0..f76d9af 100644 --- a/action.yml +++ b/action.yml @@ -70,7 +70,7 @@ runs: - name: "Cache Composer dependencies" if: steps.should-cache.outputs.do-cache == 1 - uses: "actions/cache@v2" + uses: "actions/cache@v3" with: path: "${{ steps.composer.outputs.cache-dir }}" key: "${{ steps.cache-key.outputs.key }}"