ci: remove SVN setup from deployment workflows
All checks were successful
continuous-integration/drone/push Build is passing

Current action versions install subversion as required, so we do not
need to add another step.
This commit is contained in:
Stefan Kalscheuer 2025-01-26 19:17:51 +01:00
parent e5a76fc18c
commit 4635a47ca9
Signed by: stefan
GPG Key ID: 3887EC2A53B55430
2 changed files with 0 additions and 12 deletions

View File

@ -10,12 +10,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install SVN
run: |
if ! command -v svn > /dev/null; then
sudo apt-get update
sudo apt-get install -y subversion
fi
- name: Setup PHP
uses: shivammathur/setup-php@v2
with:

View File

@ -11,12 +11,6 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install SVN
run: |
if ! command -v svn > /dev/null; then
sudo apt-get update
sudo apt-get install -y subversion
fi
- name: Setup PHP
uses: shivammathur/setup-php@v2
with: