Skip to content

Commit

Permalink
Tools: Explicitly install SVN within GitHub Actions due to Ubuntu 24.…
Browse files Browse the repository at this point in the history
…04 update

Fixes #337
  • Loading branch information
coffee2code committed Feb 10, 2025
1 parent 15a05df commit 7dc7e42
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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: |
Expand Down
10 changes: 10 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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)"
Expand Down Expand Up @@ -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)"
Expand Down

0 comments on commit 7dc7e42

Please sign in to comment.