diff --git a/README.md b/README.md index fbc7f94d..7a03bc98 100644 --- a/README.md +++ b/README.md @@ -534,7 +534,7 @@ with: ``` ### Skywalking Dependency -The Skywalking Dependency watches the [Apache Skywalking Download Page](https://archive.apache.org/dist/skywalking) for new versions. +The Skywalking Dependency watches the [Apache Skywalking Download Page](https://downloads.apache.org/skywalking) for new versions. ```yaml uses: docker://ghcr.io/paketo-buildpacks/actions/skywalking-dependency:main @@ -550,22 +550,23 @@ with: ``` ### Tomcat Dependency -The Tomcat Dependency watches the [Apache Tomcat Download Page](https://archive.apache.org/dist/tomcat/tomcat-9/) for new versions. +The Tomcat Dependency watches the [Apache Tomcat Download Page](https://downloads.apache.org/tomcat/tomcat-9/) for new versions. ```yaml uses: docker://ghcr.io/paketo-buildpacks/actions/tomcat-dependency:main with: - uri: https://archive.apache.org/dist/tomcat/tomcat-9 + uri: https://downloads.apache.org/tomcat/tomcat-9 ``` ### Tomee Dependency -The Tomee Dependency watches the [Apache Tomee Download Page](https://archive.apache.org/dist/tomee/) for new versions. Available distributions are `microprofile`, `webprofile`, `plus` or `plume` +The Tomee Dependency watches the [Apache Tomee Download Page](https://downloads.apache.org/tomee/) for new versions. Available distributions are `microprofile`, `webprofile`, `plus` or `plume`. ```yaml uses: docker://ghcr.io/paketo-buildpacks/actions/tomee-dependency:main with: - uri: https://archive.apache.org/dist/tomee/ + uri: https://downloads.apache.org/tomee/ dist: webprofile + major: 9 ``` ### YourKit Dependency diff --git a/actions/skywalking-dependency/main.go b/actions/skywalking-dependency/main.go index 92c07d8b..b46851ce 100644 --- a/actions/skywalking-dependency/main.go +++ b/actions/skywalking-dependency/main.go @@ -29,7 +29,7 @@ import ( func main() { inputs := actions.NewInputs() - uri := "https://archive.apache.org/dist/skywalking/java-agent" + uri := "https://downloads.apache.org/skywalking/java-agent" c := colly.NewCollector() diff --git a/actions/tomee-dependency/main.go b/actions/tomee-dependency/main.go index f6ed3537..1d91588a 100644 --- a/actions/tomee-dependency/main.go +++ b/actions/tomee-dependency/main.go @@ -58,8 +58,6 @@ func main() { } versions[v] = fmt.Sprintf("%s/tomee-%[2]s/apache-tomee-%[2]s-%s.tar.gz", uri, v, dist) - - fmt.Println("Adding", v, "with url", versions[v]) } } })