From 699ef55e197f0c9951256c38f895deaa2d1f3bec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Aug 2025 06:10:20 +0000 Subject: [PATCH 1/2] :arrow_up: Bump actions/checkout from 3 to 5 Bumps [actions/checkout](https://github.com/actions/checkout) from 3 to 5. - [Release notes](https://github.com/actions/checkout/releases) - [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md) - [Commits](https://github.com/actions/checkout/compare/v3...v5) --- updated-dependencies: - dependency-name: actions/checkout dependency-version: '5' dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- .github/workflows/fix-php-code-style-issues.yml | 2 +- .github/workflows/run-tests.yml | 2 +- .github/workflows/update-changelog.yml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/fix-php-code-style-issues.yml b/.github/workflows/fix-php-code-style-issues.yml index ad84f6f..fdf366e 100644 --- a/.github/workflows/fix-php-code-style-issues.yml +++ b/.github/workflows/fix-php-code-style-issues.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: ref: ${{ github.head_ref }} diff --git a/.github/workflows/run-tests.yml b/.github/workflows/run-tests.yml index b5d6720..060bc51 100644 --- a/.github/workflows/run-tests.yml +++ b/.github/workflows/run-tests.yml @@ -25,7 +25,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v5 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml index 8c12ba9..6d9f592 100644 --- a/.github/workflows/update-changelog.yml +++ b/.github/workflows/update-changelog.yml @@ -13,7 +13,7 @@ jobs: steps: - name: Checkout code - uses: actions/checkout@v3 + uses: actions/checkout@v5 with: ref: main From 88d079bfba905ffc65a65f9c35b9607a4cf6bb62 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Tue, 12 Aug 2025 06:10:40 +0000 Subject: [PATCH 2/2] Fix styling --- src/Support/Concerns/WithFilters.php | 2 -- src/Support/Concerns/WithPagination.php | 2 +- src/Support/Concerns/WithSearch.php | 2 -- 3 files changed, 1 insertion(+), 5 deletions(-) diff --git a/src/Support/Concerns/WithFilters.php b/src/Support/Concerns/WithFilters.php index bf06312..e30ae0a 100644 --- a/src/Support/Concerns/WithFilters.php +++ b/src/Support/Concerns/WithFilters.php @@ -2,8 +2,6 @@ namespace ACTTraining\QueryBuilder\Support\Concerns; -use Livewire\Attributes\Session; - trait WithFilters { protected bool $displayFilters = false; diff --git a/src/Support/Concerns/WithPagination.php b/src/Support/Concerns/WithPagination.php index 825dc9b..2f83ae0 100644 --- a/src/Support/Concerns/WithPagination.php +++ b/src/Support/Concerns/WithPagination.php @@ -12,7 +12,7 @@ trait WithPagination private bool $paginate = true; - private bool|string $scrollTo = false; //false disables scroll on pagination + private bool|string $scrollTo = false; // false disables scroll on pagination public function usePagination($usePagination = true): static { diff --git a/src/Support/Concerns/WithSearch.php b/src/Support/Concerns/WithSearch.php index b0555e0..cfb08b3 100644 --- a/src/Support/Concerns/WithSearch.php +++ b/src/Support/Concerns/WithSearch.php @@ -2,8 +2,6 @@ namespace ACTTraining\QueryBuilder\Support\Concerns; -use Livewire\Attributes\Session; - trait WithSearch { protected bool $searchable = false;