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 d5cf44c Install Subversion client on Linux runners d5cf44c is described below commit d5cf44c7c0897b0611003adc1c20f00ce63c5ca9 Author: Sylwester Lachiewicz <slachiew...@apache.org> AuthorDate: Thu Dec 26 12:48:22 2024 +0100 Install Subversion client on Linux runners Required for Maven Wagon tests --- .github/workflows/maven-verify.yml | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/.github/workflows/maven-verify.yml b/.github/workflows/maven-verify.yml index 5821616..7129d0f 100644 --- a/.github/workflows/maven-verify.yml +++ b/.github/workflows/maven-verify.yml @@ -170,6 +170,12 @@ on: default: false type: boolean + install-subversion: + description: Ensure all build images have Subversion(svn) installed + required: false + default: false + type: boolean + install-gpg: description: Ensure all build images have GnuPG installed required: false @@ -327,6 +333,14 @@ jobs: run: | brew install mercurial + - name: Install Subversion (svn) on Ubuntu + if: > + inputs.install-subversion && + steps.should-run.conclusion == 'success' && + matrix.os == 'ubuntu-latest' + run: | + apt install subversion + - name: Install GnuPG if: > inputs.install-gpg &&