From 67ac197d82a325ff40c4cd4b68bbc2129165e6b7 Mon Sep 17 00:00:00 2001 From: Stephen Williamson Date: Fri, 12 Jun 2026 14:07:44 -0400 Subject: [PATCH] Use checkout action with Node 24 support --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 1b3a365..04a1e92 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -23,14 +23,14 @@ jobs: name: PHP ${{ matrix.php }} / Laravel ${{ matrix.laravel }} steps: - - uses: actions/checkout@v4 + - uses: actions/checkout@v5 - uses: shivammathur/setup-php@v2 with: php-version: ${{ matrix.php }} coverage: none - - uses: ramsey/composer-install@v3 + - uses: ramsey/composer-install@v4 with: dependency-versions: highest composer-options: --with="illuminate/contracts:${{ matrix.laravel }}" --with="orchestra/testbench:${{ matrix.testbench }}"