From 2eecb79788be892a5b491fde50d2ed6a01df6838 Mon Sep 17 00:00:00 2001 From: Rotzbua Date: Sat, 13 Dec 2025 13:43:20 +0100 Subject: [PATCH] Add php8.6 to experimental test --- .github/workflows/php.yml | 6 +++--- .github/workflows/typo.yml | 2 +- composer.json | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/php.yml b/.github/workflows/php.yml index 3b9966a..d399498 100644 --- a/.github/workflows/php.yml +++ b/.github/workflows/php.yml @@ -8,17 +8,17 @@ jobs: strategy: matrix: operating-system: [ ubuntu-latest ] - php-versions: [ '8.1', '8.2', '8.3', '8.4' ] + php-versions: [ '8.1', '8.2', '8.3', '8.4', '8.5' ] experimental: [ false ] include: - - php-versions: '8.5' + - php-versions: '8.6' operating-system: ubuntu-latest experimental: true fail-fast: false runs-on: ${{ matrix.operating-system }} continue-on-error: ${{ matrix.experimental }} steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Setup PHP uses: shivammathur/setup-php@v2 diff --git a/.github/workflows/typo.yml b/.github/workflows/typo.yml index 20c52c0..e405d95 100644 --- a/.github/workflows/typo.yml +++ b/.github/workflows/typo.yml @@ -6,7 +6,7 @@ jobs: name: Check for typos / misspells runs-on: ubuntu-latest steps: - - uses: actions/checkout@v5 + - uses: actions/checkout@v6 - name: Run misspell with reviewdog uses: reviewdog/action-misspell@v1 diff --git a/composer.json b/composer.json index 28457ca..5853fb4 100644 --- a/composer.json +++ b/composer.json @@ -28,6 +28,6 @@ "test": "tester tests -s -p php" }, "require-dev": { - "nette/tester": "^2.5.6" + "nette/tester": "^2.5.7" } }