From 9fc259ab1d95e4041fa4d4969da6440f200ca4b3 Mon Sep 17 00:00:00 2001 From: Rinat K Date: Wed, 22 Jan 2025 11:28:57 -0600 Subject: [PATCH 1/3] Install SVN in ci --- .github/workflows/ci.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index bd97027..c353891 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -40,6 +40,10 @@ jobs: - name: Check out source code uses: actions/checkout@v3 + - name: Install svn + run: sudo apt-get update && sudo apt-get install -y subversion + shell: bash + - name: Set up PHP uses: shivammathur/setup-php@2.22.0 with: From 16dd3d93de7594f01a621344be361d8dc7a1bca1 Mon Sep 17 00:00:00 2001 From: Rinat Khaziev Date: Wed, 22 Jan 2025 11:33:49 -0600 Subject: [PATCH 2/3] Update ci.yml to include modern versions of things --- .github/workflows/ci.yml | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index c353891..77a0f7e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,12 +17,15 @@ jobs: php: - '7.4' - '8.0' + - '8.1' + - '8.2' + - '8.3' wp: - latest multisite: - 'no' include: - - php: '7.4' + - php: '8.1' wp: latest multisite: yes services: @@ -45,17 +48,17 @@ jobs: shell: bash - name: Set up PHP - uses: shivammathur/setup-php@2.22.0 + uses: shivammathur/setup-php@2.32.0 with: php-version: ${{ matrix.php }} env: fail-fast: 'true' - name: Install PHP Dependencies - uses: ramsey/composer-install@2.1.1 + uses: ramsey/composer-install@3.0.0 - name: Set up WordPress and WordPress Test Library - uses: sjinks/setup-wordpress-test-library@1.1.11 + uses: sjinks/setup-wordpress-test-library@v2.1.3 with: version: ${{ matrix.wp }} From 737048f603c94f319c674ee99b354f629b1a4f35 Mon Sep 17 00:00:00 2001 From: Rinat Khaziev Date: Wed, 22 Jan 2025 11:37:07 -0600 Subject: [PATCH 3/3] Actually drop 7.4 --- .github/workflows/ci.yml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 77a0f7e..2451aa0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,6 @@ jobs: fail-fast: false matrix: php: - - '7.4' - '8.0' - '8.1' - '8.2'