From 105ecb394c62a4a65dad918ff2d27bf18f7aa471 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 20 Feb 2024 11:27:23 +0000 Subject: [PATCH 1/2] Bump stefanzweifel/git-auto-commit-action from 4 to 5 Bumps [stefanzweifel/git-auto-commit-action](https://github.com/stefanzweifel/git-auto-commit-action) from 4 to 5. - [Release notes](https://github.com/stefanzweifel/git-auto-commit-action/releases) - [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) - [Commits](https://github.com/stefanzweifel/git-auto-commit-action/compare/v4...v5) --- updated-dependencies: - dependency-name: stefanzweifel/git-auto-commit-action 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/update-changelog.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/fix-php-code-style-issues.yml b/.github/workflows/fix-php-code-style-issues.yml index c958238..0d57f20 100644 --- a/.github/workflows/fix-php-code-style-issues.yml +++ b/.github/workflows/fix-php-code-style-issues.yml @@ -22,6 +22,6 @@ jobs: uses: aglipanci/laravel-pint-action@2.3.1 - name: Commit changes - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: commit_message: Fix styling diff --git a/.github/workflows/update-changelog.yml b/.github/workflows/update-changelog.yml index 0f66ca8..43a1d06 100644 --- a/.github/workflows/update-changelog.yml +++ b/.github/workflows/update-changelog.yml @@ -24,7 +24,7 @@ jobs: release-notes: ${{ github.event.release.body }} - name: Commit updated CHANGELOG - uses: stefanzweifel/git-auto-commit-action@v4 + uses: stefanzweifel/git-auto-commit-action@v5 with: branch: 2.x commit_message: Update CHANGELOG From 1b6b43b457ccb7ccaa7caca2da90d5b38185e189 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" Date: Tue, 20 Feb 2024 11:27:39 +0000 Subject: [PATCH 2/2] Fix styling --- database/factories/VacancyFactory.php | 2 +- src/FilamentPlugin.php | 2 +- src/Models/Vacancy.php | 2 +- src/UI/API/Routes/api.php | 2 +- src/UI/Filament/Resources/VacancyResource.php | 4 ++-- .../Resources/VacancyResource/Pages/CreateVacancy.php | 2 +- .../Filament/Resources/VacancyResource/Pages/EditVacancy.php | 2 +- .../Filament/Resources/VacancyResource/Pages/ListVacancy.php | 2 +- src/VacancyServiceProvider.php | 4 ++-- tests/TestCase.php | 2 +- 10 files changed, 12 insertions(+), 12 deletions(-) diff --git a/database/factories/VacancyFactory.php b/database/factories/VacancyFactory.php index 03001df..c74c972 100644 --- a/database/factories/VacancyFactory.php +++ b/database/factories/VacancyFactory.php @@ -2,8 +2,8 @@ namespace AdminKit\Vacancy\Database\Factories; -use Illuminate\Database\Eloquent\Factories\Factory; use AdminKit\Vacancy\Models\Vacancy; +use Illuminate\Database\Eloquent\Factories\Factory; class VacancyFactory extends Factory { diff --git a/src/FilamentPlugin.php b/src/FilamentPlugin.php index 8d0b891..2d47d65 100644 --- a/src/FilamentPlugin.php +++ b/src/FilamentPlugin.php @@ -2,9 +2,9 @@ namespace AdminKit\Vacancy; +use AdminKit\Vacancy\UI\Filament\Resources\VacancyResource; use Filament\Contracts\Plugin; use Filament\Panel; -use AdminKit\Vacancy\UI\Filament\Resources\VacancyResource; class FilamentPlugin implements Plugin { diff --git a/src/Models/Vacancy.php b/src/Models/Vacancy.php index d0857ec..fee1909 100644 --- a/src/Models/Vacancy.php +++ b/src/Models/Vacancy.php @@ -3,9 +3,9 @@ namespace AdminKit\Vacancy\Models; use AdminKit\Core\Abstracts\Models\AbstractModel; +use AdminKit\Vacancy\Database\Factories\VacancyFactory; use Illuminate\Database\Eloquent\Factories\HasFactory; use Spatie\Translatable\HasTranslations; -use AdminKit\Vacancy\Database\Factories\VacancyFactory; class Vacancy extends AbstractModel { diff --git a/src/UI/API/Routes/api.php b/src/UI/API/Routes/api.php index da19540..6efbf8d 100644 --- a/src/UI/API/Routes/api.php +++ b/src/UI/API/Routes/api.php @@ -1,7 +1,7 @@