Skip to content

Commit

Permalink
Merge pull request #500 from paketo-buildpacks/fix-skywalking
Browse files Browse the repository at this point in the history
Pull in the Skywalking agent not the server
  • Loading branch information
Daniel Mikusa authored Jan 5, 2022
2 parents bd28fb0 + 281c7c7 commit 6cf158e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions actions/skywalking-dependency/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ import (
func main() {
inputs := actions.NewInputs()

uri := "https://archive.apache.org/dist/skywalking"
uri := "https://archive.apache.org/dist/skywalking/java-agent"

c := colly.NewCollector()

Expand All @@ -39,7 +39,7 @@ func main() {
if p := cp.FindStringSubmatch(element.Attr("href")); p != nil {
v := fmt.Sprintf("%s.%s.%s", p[1], p[2], p[3])

versions[v] = fmt.Sprintf("%s/%[2]s/apache-skywalking-apm-%[2]s.tar.gz", uri, v)
versions[v] = fmt.Sprintf("%s/%[2]s/apache-skywalking-java-agent-%[2]s.tgz", uri, v)
}
})

Expand Down

0 comments on commit 6cf158e

Please sign in to comment.