From 191fa336e1c3ccc2406fc0ccf7f63d1d3ad24a23 Mon Sep 17 00:00:00 2001 From: Eric Fortmeyer Date: Fri, 5 May 2023 22:27:45 -0500 Subject: [PATCH] ci: use node 16 compatible actions Node 12 is deprecated. --- .github/workflows/php-latest.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/php-latest.yml b/.github/workflows/php-latest.yml index d9e7a49..c741561 100644 --- a/.github/workflows/php-latest.yml +++ b/.github/workflows/php-latest.yml @@ -13,7 +13,7 @@ jobs: php-versions: [latest, nightly] phpunit-versions: ['latest'] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -25,7 +25,7 @@ jobs: - name: Cache Composer packages id: composer-cache - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: vendor key: ${{ runner.os }}-php-${{ hashFiles('**/composer.lock') }}