diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7c52ec1..7025e2e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,28 +16,29 @@ jobs: strategy: fail-fast: false matrix: - php: [ - 7.0, - 7.1, - 7.2, - 7.3, - 7.4, - 8.0, - 8.1 - ] + php: + - '7.0' + - '7.1' + - '7.2' + - '7.3' + - '7.4' + - '8.0' + - '8.1' composer: [basic] timeout-minutes: 10 steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v4 + with: + fetch-depth: 0 - name: Setup PHP - uses: shivammathur/setup-php@2.9.0 + uses: shivammathur/setup-php@2.30.4 with: php-version: ${{ matrix.php }} coverage: xdebug extensions: zip - tools: composer + tools: 'composer:2.2' - name: Determine composer cache directory id: composer-cache