From 6960f9313088fa0e04da501d11e2dc18e2029543 Mon Sep 17 00:00:00 2001 From: Robert Allport Date: Sun, 5 Feb 2023 12:15:53 +0000 Subject: [PATCH] Update GitHub actions to use Node.js 16 (#27) * Update GitHub actions to use Node.js 16 --- .github/workflows/run-tests-laravel-7.yml | 4 ++-- .github/workflows/run-tests-laravel-8-9.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/run-tests-laravel-7.yml b/.github/workflows/run-tests-laravel-7.yml index 044a8d4..0788b4e 100644 --- a/.github/workflows/run-tests-laravel-7.yml +++ b/.github/workflows/run-tests-laravel-7.yml @@ -29,10 +29,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.composer/cache/files key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} diff --git a/.github/workflows/run-tests-laravel-8-9.yml b/.github/workflows/run-tests-laravel-8-9.yml index d102fd0..77ea326 100644 --- a/.github/workflows/run-tests-laravel-8-9.yml +++ b/.github/workflows/run-tests-laravel-8-9.yml @@ -31,10 +31,10 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Cache dependencies - uses: actions/cache@v2 + uses: actions/cache@v3 with: path: ~/.composer/cache/files key: dependencies-laravel-${{ matrix.laravel }}-php-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }}