From ded2c82da7a296ec661fd2f4895f7404d7e69782 Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 18 Nov 2025 11:05:52 +0300 Subject: [PATCH 1/2] Updated GitHub Actions workflows to use `ubuntu-latest` runners and added manual dispatch option for `update.yml`. --- .github/workflows/tests.yml | 2 +- .github/workflows/update.yml | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 495e34f..2ea96c7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -6,7 +6,7 @@ permissions: read-all jobs: laravel: - runs-on: ${{ secrets.RUNNER_NAME }} + runs-on: ubuntu-latest strategy: fail-fast: true diff --git a/.github/workflows/update.yml b/.github/workflows/update.yml index d3e05eb..72e85c3 100644 --- a/.github/workflows/update.yml +++ b/.github/workflows/update.yml @@ -4,12 +4,13 @@ on: push: branches: - main + workflow_dispatch: permissions: write-all jobs: update: - runs-on: ${{ secrets.RUNNER_NAME }} + runs-on: ubuntu-latest steps: - name: Checkout code From 774b43b3db3a122c1fbb38764cd52d1b405b29ae Mon Sep 17 00:00:00 2001 From: Andrey Helldar Date: Tue, 18 Nov 2025 11:08:37 +0300 Subject: [PATCH 2/2] Updated `pestphp/pest` dev dependency to support version 3.x. --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 29b798b..4c403f4 100644 --- a/composer.json +++ b/composer.json @@ -36,7 +36,7 @@ "require-dev": { "illuminate/support": "^10.31 || ^11.0 || ^12.0", "laravel-lang/locale-list": "^1.2", - "pestphp/pest": "^2.24.3", + "pestphp/pest": "^2.24.3 || ^3.0", "punic/punic": "^3.8", "symfony/console": "^6.3 || ^7.0", "symfony/process": "^6.3 || ^7.0",