From c86d6a2383c6b83f95c4a6b6ee15141e7c4b6523 Mon Sep 17 00:00:00 2001 From: Danack Date: Sat, 6 Jul 2024 16:46:40 +0200 Subject: [PATCH] Use consistent OS version between storing cache and using cache. --- .github/workflows/main.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 2965c7a8..893ebe99 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -10,7 +10,6 @@ on: jobs: test_basic: name: basic PHP ${{ matrix.php }} - I ${{ matrix.imagemagick }} - runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: @@ -21,6 +20,7 @@ jobs: 7.1.0-13, 6.8.7-0, ] + runs-on: ${{ matrix.os }} steps: - name: Checkout code @@ -76,11 +76,10 @@ jobs: test_all: name: Full PHP ${{ matrix.php }} - I ${{ matrix.imagemagick }} needs: test_basic - runs-on: ubuntu-20.04 strategy: fail-fast: false matrix: - os: [ubuntu-20.04] + os: [ ubuntu-latest ] php: [5.4, 8.1, 8.0, 7.4, 7.3, 7.2, 7.1, 7.0, 5.6, 5.5] imagemagick: [ 7.1.0-13, @@ -124,6 +123,7 @@ jobs: imagemagick: git7 - php: 5.5 imagemagick: git7 + runs-on: ${{ matrix.os }} steps: - name: Checkout code