Skip to content

Commit

Permalink
NH-37575: download agent from GitHub
Browse files Browse the repository at this point in the history
  • Loading branch information
cleverchuk committed Jul 3, 2024
1 parent 60bca2b commit 55a8fb1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
6 changes: 1 addition & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,8 +27,6 @@ jobs:
github_release:
runs-on: ubuntu-latest
steps:
- name: arch
run: uname -a
- uses: actions/checkout@v4

- name: Set up JDK 17
Expand Down Expand Up @@ -105,7 +103,7 @@ jobs:
response=$(curl -fs -L \
-H "Accept: application/vnd.github+json" \
-H "Authorization: Bearer ${GITHUB_TOKEN}"\
-H "Authorization: Bearer ${GITHUB_TOKEN}" \
-H "X-GitHub-Api-Version: 2022-11-28" \
https://api.github.com/repos/$GITHUB_REPOSITORY/releases/tags/v$VERSION
Expand Down Expand Up @@ -180,8 +178,6 @@ jobs:
aws s3 cp VERSION \
s3://$STAGE_BUCKET/apm/java/latest/VERSION \
--acl public-read

build-test-images:
runs-on: ubuntu-latest
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public class AOTestCollectorContainer {

public static GenericContainer<?> build(Network network) {
return new GenericContainer<>(
DockerImageName.parse("ghcr.io/solarwinds/apm-agent-test-collector:v2.0.4"))
DockerImageName.parse("ghcr.io/solarwinds/apm-agent-test-collector:v2.1.3"))
.withNetwork(network)
.withNetworkAliases("AOCollector")
.withLogConsumer(new Slf4jLogConsumer(logger))
Expand Down

0 comments on commit 55a8fb1

Please sign in to comment.