diff --git a/.github/workflows/auto-update.yml b/.github/workflows/auto-update.yml index e522ab9..138d4f1 100644 --- a/.github/workflows/auto-update.yml +++ b/.github/workflows/auto-update.yml @@ -34,10 +34,6 @@ jobs: ref: ${{ env.BRANCH }} path: ./dist - - name: Build the dependent repo - run: npm install && npm run build - working-directory: dist - - id: latest-commit name: Get the latest commit run: | @@ -83,3 +79,4 @@ jobs: This updates from [${{ env.CURRENT_COMMIT }}](https://github.com/${{ env.REPOSITORY }}/commit/${{ env.CURRENT_COMMIT }}) to [${{ env.LATEST_COMMIT }}](https://github.com/${{ env.REPOSITORY }}/commit/${{ env.LATEST_COMMIT }}). Check out the differences: [`${{ env.CURRENT_COMMIT }}` ... `${{ env.LATEST_COMMIT }}`](https://github.com/${{ env.REPOSITORY }}/compare/${{ env.CURRENT_COMMIT }}...${{ env.LATEST_COMMIT }}) branch: feature/update-${{ env.LATEST_COMMIT }} + diff --git a/.github/workflows/php-cs-fixer.yml b/.github/workflows/php-cs-fixer.yml index 894d55a..487db5a 100644 --- a/.github/workflows/php-cs-fixer.yml +++ b/.github/workflows/php-cs-fixer.yml @@ -38,3 +38,4 @@ jobs: with: commit_message: Fix styling + diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9fc21aa..1a217e6 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -11,18 +11,24 @@ jobs: strategy: fail-fast: true matrix: - php: [7.4, '8.0', 8.1] - laravel: [8, 9] + php: [7.4, '8.0', 8.1, 8.2] + laravel: [8, 9, 10] exclude: - php: 7.4 laravel: 9 + - php: 7.4 + laravel: 10 + - php: '8.0' + laravel: 10 + - php: 8.2 + laravel: 8 name: PHP ${{ matrix.php }} - Laravel ${{ matrix.laravel }} steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 - name: Setup PHP uses: shivammathur/setup-php@v2 @@ -38,3 +44,4 @@ jobs: - name: Execute tests run: vendor/bin/phpunit --verbose + diff --git a/.github/workflows/update-changelog.yaml b/.github/workflows/update-changelog.yaml index fa56639..b20f3b6 100644 --- a/.github/workflows/update-changelog.yaml +++ b/.github/workflows/update-changelog.yaml @@ -10,7 +10,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v2 + uses: actions/checkout@v3 with: ref: main diff --git a/composer.json b/composer.json index 4f04df0..6b63b48 100644 --- a/composer.json +++ b/composer.json @@ -17,12 +17,12 @@ "require": { "php": "^7.4|^8.0", "blade-ui-kit/blade-icons": "^1.1", - "illuminate/support": "^8.0|^9.0" + "illuminate/support": "^8.0|^9.0|^10.0" }, "require-dev": { - "codeat3/blade-icon-generation-helpers": "^0.1", + "codeat3/blade-icon-generation-helpers": "^0.3", "codeat3/phpcs-styles": "^1.0", - "orchestra/testbench": "^6.0|^7.0", + "orchestra/testbench": "^6.0|^7.0|^8.0", "phpunit/phpunit": "^9.0" }, "autoload": {