From 6b9e2e3a8f59af20c35799ebe43e1fd0d6ff0d85 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Mon, 22 Jul 2024 08:54:10 -0700 Subject: [PATCH] Bumped actions/cache to v4 --- .github/workflows/test-suite.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-suite.yaml b/.github/workflows/test-suite.yaml index c907702..51b2bb3 100644 --- a/.github/workflows/test-suite.yaml +++ b/.github/workflows/test-suite.yaml @@ -11,7 +11,7 @@ jobs: uses: actions/checkout@v4 - name: Cache JavaScript Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} @@ -85,7 +85,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache PHP Dependencies - uses: actions/cache@v3 + uses: actions/cache@v4 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-composer-${{ hashFiles('**/composer.lock') }}