From 5524ba6d42645707a01419f2d046dc0ffd289adc Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Fri, 16 Feb 2024 13:23:48 +0200 Subject: [PATCH 1/2] Use actions/checkout@v4 in Github Actions --- .github/workflows/static-analysis.yml | 2 +- .github/workflows/webdriver-chrome-headless.yml | 2 +- .github/workflows/webdriver-chrome.yml | 2 +- .github/workflows/webdriver-firefox.yml | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/static-analysis.yml b/.github/workflows/static-analysis.yml index 1bb7c3b..7d39583 100644 --- a/.github/workflows/static-analysis.yml +++ b/.github/workflows/static-analysis.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - name: Install PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/webdriver-chrome-headless.yml b/.github/workflows/webdriver-chrome-headless.yml index 20f2747..fcd05e4 100644 --- a/.github/workflows/webdriver-chrome-headless.yml +++ b/.github/workflows/webdriver-chrome-headless.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: docker run -d --net=host --shm-size=2g selenium/standalone-chrome:3.141.59-oxygen diff --git a/.github/workflows/webdriver-chrome.yml b/.github/workflows/webdriver-chrome.yml index b5c678f..5fe2738 100644 --- a/.github/workflows/webdriver-chrome.yml +++ b/.github/workflows/webdriver-chrome.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: docker run -d --net=host --shm-size=2g selenium/standalone-chrome:3.141.59-oxygen diff --git a/.github/workflows/webdriver-firefox.yml b/.github/workflows/webdriver-firefox.yml index 407051a..2ddf247 100644 --- a/.github/workflows/webdriver-firefox.yml +++ b/.github/workflows/webdriver-firefox.yml @@ -12,7 +12,7 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v3 + - uses: actions/checkout@v4 - run: docker run -d --net=host --shm-size=2g selenium/standalone-firefox:3.141.59-oxygen From 18874c9513ea5c14f2397391629eb23dddd91529 Mon Sep 17 00:00:00 2001 From: Gintautas Miselis Date: Fri, 16 Feb 2024 13:24:07 +0200 Subject: [PATCH 2/2] Support PHPUnit 11 --- composer.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 3d7b4f5..0e423b3 100644 --- a/composer.json +++ b/composer.json @@ -26,7 +26,7 @@ "codeception/lib-web": "^1.0.1", "codeception/stub": "^4.0", "php-webdriver/webdriver": "^1.8.0", - "phpunit/phpunit": "^10.0" + "phpunit/phpunit": "^10.0 || ^11.0" }, "suggest": { "codeception/phpbuiltinserver": "Start and stop PHP built-in web server for your tests"