Skip to content

Commit

Permalink
Docker: Rename test image
Browse files Browse the repository at this point in the history
this is a significantly different image so I think it should have a
different name, not just a different tag.

Does it also need a changelog entry?
I was thinking not...

Signed-off-by: Simon Bennetts <psiinon@gmail.com>
  • Loading branch information
psiinon committed May 17, 2024
1 parent 19321b4 commit 1c72649
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/run-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
push: true
provenance: false
tags: |
ghcr.io/zaproxy/zaproxy:tests
ghcr.io/zaproxy/zaproxy-tests
secrets: |
webswing_url=${{ secrets.WEBSWING_URL }}
annotations: |
Expand All @@ -43,17 +43,17 @@ jobs:
index:org.opencontainers.image.licenses=Apache-2.0
-
name: Run install tests
run: docker run --rm -t ghcr.io/zaproxy/zaproxy:tests wrk/install_tests.sh
run: docker run --rm -t ghcr.io/zaproxy/zaproxy-tests wrk/install_tests.sh
-
name: Run python tests
run: docker run --rm -t ghcr.io/zaproxy/zaproxy:tests wrk/python_tests.sh
run: docker run --rm -t ghcr.io/zaproxy/zaproxy-tests wrk/python_tests.sh
-
name: Automation Framework context tests
run: docker run --rm -t ghcr.io/zaproxy/zaproxy:tests wrk/af_context_tests.sh
run: docker run --rm -t ghcr.io/zaproxy/zaproxy-tests wrk/af_context_tests.sh
-
name: Automation Framework plan tests
run: docker run --rm -t ghcr.io/zaproxy/zaproxy:tests wrk/af_plan_tests.sh
run: docker run --rm -t ghcr.io/zaproxy/zaproxy-tests wrk/af_plan_tests.sh
-
# Run these last as they are most likely to fail
name: Run baseline tests
run: docker run --rm -t ghcr.io/zaproxy/zaproxy:tests wrk/baseline_tests.sh
run: docker run --rm -t ghcr.io/zaproxy/zaproxy-tests wrk/baseline_tests.sh

0 comments on commit 1c72649

Please sign in to comment.