Tools: Explicitly install SVN within GitHub Actions due to Ubuntu 24.04 update
Some checks failed
CI / PHP CodeSniffer (push) Has been cancelled
CI / PHP Unit Tests (7.4) (push) Has been cancelled

Fixes #337
This commit is contained in:
Scott Reilly 2025-02-10 16:03:22 -07:00
parent 15a05df622
commit 7dc7e421ae
No known key found for this signature in database
2 changed files with 15 additions and 0 deletions

View file

@ -17,6 +17,11 @@ jobs:
- name: Checkout repository
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3
- name: Install Subversion
run: |
sudo apt-get update
sudo apt-get install -y subversion
# Required for old theme build step.
- name: Checkout wporg CSS
run: |

View file

@ -17,6 +17,11 @@ jobs:
with:
fetch-depth: 0
- name: Install Subversion
run: |
sudo apt-get update
sudo apt-get install -y subversion
- name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"
@ -73,6 +78,11 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install Subversion
run: |
sudo apt-get update
sudo apt-get install -y subversion
- name: Get Composer cache directory
id: composer-cache
run: echo "::set-output name=dir::$(composer config cache-files-dir)"