From 88b7c9f57c545048ecc227f2d2026d31b6db87de Mon Sep 17 00:00:00 2001 From: Takuya Aramaki Date: Sat, 25 Mar 2023 17:38:23 +0900 Subject: [PATCH] Upgrade actions/checkout and actions/cache --- .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 33224fcb6..00072c8c7 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: steps: - name: Checkout - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Override PHP ini values for JIT compiler if: matrix.compiler == 'jit' @@ -68,7 +68,7 @@ jobs: - name: Cache Composer packages id: composer-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor key: ${{ runner.os }}-php-${{ matrix.php-version }}-${{ hashFiles('**/composer.lock') }}