From 8a2ed9446af4e695c6ec5c5eb5852b3fffb61e1d Mon Sep 17 00:00:00 2001 From: Simon Wisselink Date: Sat, 28 Jan 2023 10:44:01 +0100 Subject: [PATCH] Update composer packages cache key Update composer packages cache key to trigger refresh on lexer --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 93f3f1b3..681c45ac 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -67,9 +67,9 @@ jobs: uses: actions/cache@v3 with: path: vendor - key: smartyv5-${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} + key: v5r2-${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }} restore-keys: | - smartyv5-${{ runner.os }}-php-${{ matrix.php-version }}- + v5r1-${{ runner.os }}-php-${{ matrix.php-version }}- - name: Install dependencies uses: php-actions/composer@v6