From 8e19dd621a21eca04887f66f14df7d45bba7463a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 29 Mar 2022 20:10:23 +0000 Subject: [PATCH] Bump actions/cache from 2.1.7 to 3 Bumps [actions/cache](https://github.com/actions/cache) from 2.1.7 to 3. - [Release notes](https://github.com/actions/cache/releases) - [Commits](https://github.com/actions/cache/compare/v2.1.7...v3) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/push.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/push.yml b/.github/workflows/push.yml index c0e3282..41543de 100644 --- a/.github/workflows/push.yml +++ b/.github/workflows/push.yml @@ -85,7 +85,7 @@ jobs: key: ${{ env.key }} - name: Cache extensions - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ${{ steps.cache-env.outputs.dir }} key: ${{ steps.cache-env.outputs.key }} @@ -124,7 +124,7 @@ jobs: steps: - uses: actions/checkout@v3 - name: Restore/cache vendor folder - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: vendor key: all-build-${{ hashFiles('**/composer.lock') }} @@ -183,7 +183,7 @@ jobs: key: ${{ env.key }} - name: Cache extensions - uses: actions/cache@v2.1.7 + uses: actions/cache@v3 with: path: ${{ steps.cache-env.outputs.dir }} key: ${{ steps.cache-env.outputs.key }}