This is an automated email from the ASF dual-hosted git repository. tsoloschenko pushed a commit to branch wicket-9.x in repository https://gitbox.apache.org/repos/asf/wicket.git
The following commit(s) were added to refs/heads/wicket-9.x by this push: new 3de178e229 fix: retries for wget 3de178e229 is described below commit 3de178e2298ad14a89f862f974ab9fc81346e34a Author: Tobias Soloschenko <tsolosche...@apache.org> AuthorDate: Tue Jun 17 08:26:38 2025 +0200 fix: retries for wget --- .github/workflows/maven.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 5f006e50d5..8e4260753f 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -26,7 +26,7 @@ jobs: - name: Build with Maven run: | MAVEN_VERSION=3.8.7 - wget https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz + wget --retry-connrefused --tries=5 --waitretry=5 --read-timeout=20 --timeout=15 https://archive.apache.org/dist/maven/maven-3/${MAVEN_VERSION}/binaries/apache-maven-${MAVEN_VERSION}-bin.tar.gz tar -xzf apache-maven-${MAVEN_VERSION}-bin.tar.gz export PATH=$PWD/apache-maven-${MAVEN_VERSION}/bin:$PATH export JAVA_HOME=/usr/lib/jvm/java-11-openjdk-amd64