From f45ef781b84fd3b9ab2b1c00b2720e04b69d6d23 Mon Sep 17 00:00:00 2001 From: TavoNiievez Date: Mon, 13 Jan 2025 04:24:26 -0500 Subject: [PATCH] Fix CI --- .github/workflows/main.yml | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 77bdcac..d0a3424 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -25,7 +25,7 @@ jobs: - name: Checkout Laravel 6 Sample if: matrix.laravel == 6 - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: codeception/laravel-module-tests path: framework-tests @@ -33,7 +33,7 @@ jobs: - name: Checkout Laravel 8 Sample if: matrix.laravel == 8 - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: repository: codeception/laravel-module-tests path: framework-tests @@ -44,7 +44,7 @@ jobs: run: echo "::set-output name=dir::$(composer config cache-files-dir)" - name: Cache composer dependencies - uses: actions/cache@v2.1.3 + uses: actions/cache@v3 with: path: ${{ steps.composer-cache.outputs.dir }} key: ${{ runner.os }}-${{ matrix.php }}-composer-${{ hashFiles('composer.json') }} @@ -62,7 +62,7 @@ jobs: - name: Install Laravel Sample run: | composer remove codeception/module-laravel --dev --no-update - composer install --no-progress + composer update --no-progress working-directory: framework-tests - name: Prepare the test environment and run test suite