From 6ecd9777e8c3b38672b19d2349bbdbdb2da22b14 Mon Sep 17 00:00:00 2001 From: Maximilian Kresse <545671+MaximilianKresse@users.noreply.github.com> Date: Wed, 12 Feb 2025 09:35:37 +0100 Subject: [PATCH] Updated test action runner environment --- .github/workflows/tests.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 055e78d..bd55bac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -3,7 +3,7 @@ on: [pull_request] jobs: tests: name: Run PHP Unit tests - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: php: ['7.1', '7.2', '7.3'] @@ -28,7 +28,7 @@ jobs: testsPhp74and8: name: Run PHP Unit tests (>= 7.4) - runs-on: ubuntu-20.04 + runs-on: ubuntu-latest strategy: matrix: php: ['7.4', '8.0', '8.1', '8.2', '8.3', '8.4']