This is an automated email from the ASF dual-hosted git repository.
sjaranowski pushed a commit to branch v4
in repository https://gitbox.apache.org/repos/asf/maven-gh-actions-shared.git
The following commit(s) were added to refs/heads/v4 by this push:
new bee336f Add svn to GitHub PATH after install
bee336f is described below
commit bee336fe6d8855e0535b300046eed58872a60076
Author: Slawomir Jaranowski <[email protected]>
AuthorDate: Tue Nov 18 08:48:40 2025 +0100
Add svn to GitHub PATH after install
---
.github/actions/install-svn/action.yml | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)
diff --git a/.github/actions/install-svn/action.yml
b/.github/actions/install-svn/action.yml
index 9c6bb76..1e1051b 100644
--- a/.github/actions/install-svn/action.yml
+++ b/.github/actions/install-svn/action.yml
@@ -32,5 +32,11 @@ runs:
- name: Install Subversion on Windows
if: runner.os == 'Windows'
- shell: powershell
- run: choco install --yes svn
+ shell: bash
+ run: |
+ choco install --yes svn
+ echo "C:\Program Files (x86)\Subversion\bin" >> $GITHUB_PATH
+
+ - name: Test Subversion
+ shell: bash
+ run: svn --version