From 7e06a378fe7804c7964973671178061e236d5b5c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 18 Jan 2024 11:32:34 +0000 Subject: [PATCH] Build(deps): Bump actions/cache from 3 to 4 Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. - [Release notes](https://github.com/actions/cache/releases) - [Changelog](https://github.com/actions/cache/blob/main/RELEASES.md) - [Commits](https://github.com/actions/cache/compare/v3...v4) --- updated-dependencies: - dependency-name: actions/cache dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/run.yml | 2 +- .github/workflows/test.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/run.yml b/.github/workflows/run.yml index 5a55eadb..fde5f23d 100644 --- a/.github/workflows/run.yml +++ b/.github/workflows/run.yml @@ -33,7 +33,7 @@ jobs: id: composer-cache run: echo "dir=$(composer config cache-files-dir)" >> $GITHUB_OUTPUT - name: Cache PHP dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 id: actions-cache with: path: ${{ steps.composer-cache.outputs.dir }} diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 291a67cb..552ece9d 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -24,7 +24,7 @@ jobs: id: composer-cache run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache PHP dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 id: actions-cache with: path: ${{ steps.composer-cache.outputs.dir }}