mirror of
https://github.com/WordPress/five-for-the-future.git
synced 2025-04-04 20:03:44 +03:00
Tools: Explicitly install SVN within GitHub Actions due to Ubuntu 24.04 update
Fixes #337
This commit is contained in:
parent
15a05df622
commit
7dc7e421ae
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -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: |
|
||||
|
|
10
.github/workflows/ci.yml
vendored
10
.github/workflows/ci.yml
vendored
|
@ -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)"
|
||||
|
|
Loading…
Reference in a new issue