From 33ad931dbba79ff15b7f9139e0eec93ba64c46c7 Mon Sep 17 00:00:00 2001 From: jrfnl Date: Mon, 21 Mar 2022 15:39:20 +0100 Subject: [PATCH] GH Actions: version update for actions/cache 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/ --- .github/workflows/php.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 2f3f81de0..6a16e0704 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -42,7 +42,7 @@ jobs: key: ${{ env.key }} - name: Cache extensions - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ${{ steps.cache-env.outputs.dir }} key: ${{ steps.cache-env.outputs.key }}