This is an automated email from the ASF dual-hosted git repository. slachiewicz 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 f1eb29c We need svn in ff step f1eb29c is described below commit f1eb29c577e23ad1e3fdde7dd6bd8be84ffe26b9 Author: Sylwester Lachiewicz <slachiew...@apache.org> AuthorDate: Thu Dec 26 16:14:59 2024 +0100 We need svn in ff step --- .github/workflows/maven-verify.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index d0eb6b8..0e8ae20 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -201,6 +201,10 @@ jobs: if: inputs.ff-run && ( github.event_name == 'push' || ( github.event_name == 'pull_request' && github.event.pull_request.head.repo.fork ) ) steps: + - name: Install Subversion (svn) on Ubuntu + if: inputs.install-subversion && runner.os == 'Linux' + run: apt install subversion + - name: Show free disk space run: df -h shell: bash