From 865365a1eb77706653d9fb8106db11947d50b6c0 Mon Sep 17 00:00:00 2001 From: Benedikt Franke Date: Wed, 24 Apr 2024 14:29:24 +0200 Subject: [PATCH] update ci --- .github/workflows/autoformat.yml | 6 +++--- .github/workflows/validate.yml | 10 +++++++++- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/.github/workflows/autoformat.yml b/.github/workflows/autoformat.yml index 1a7f425..5b4e7de 100644 --- a/.github/workflows/autoformat.yml +++ b/.github/workflows/autoformat.yml @@ -8,7 +8,7 @@ jobs: composer-normalize: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} @@ -29,7 +29,7 @@ jobs: prettier: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} @@ -44,7 +44,7 @@ jobs: php-cs-fixer: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 with: ref: ${{ github.head_ref }} diff --git a/.github/workflows/validate.yml b/.github/workflows/validate.yml index ce2db1f..ae0c6cf 100644 --- a/.github/workflows/validate.yml +++ b/.github/workflows/validate.yml @@ -17,19 +17,27 @@ jobs: - "8.0" - "8.1" - "8.2" + - "8.3" laravel-version: - "^8" - "^9" - "^10" + - "^11" exclude: - php-version: "7.4" laravel-version: "^9" - php-version: "7.4" laravel-version: "^10" + - php-version: "7.4" + laravel-version: "^11" - php-version: "8.0" laravel-version: "^10" + - php-version: "8.0" + laravel-version: "^11" + - php-version: "8.1" + laravel-version: "^11" steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v - uses: shivammathur/setup-php@v2 with: