From dbdb5774c5aa969b02284b47116859b173461da7 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 21 Mar 2022 15:33:51 +0100 Subject: [PATCH] GH Actions: version update for actions/cache 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/ --- 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 }}"