Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions .github/workflows/check-zap-errors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,13 +23,6 @@ jobs:
# Pulls Nightly from GHCR
docker run --rm -v $(pwd)/.github/workflows/conf:/zap/wrk/:rw -t ghcr.io/zaproxy/zaproxy:nightly zap.sh -addonupdate -addoninstallall -dev -cmd -autorun /zap/wrk/af-check-errors.yml
continue-on-error: true
- name: "Send messages on failures"
uses: myConsciousness/bluesky-post@96827d0a9604cb228b11b3095f6961196efba4a0 # v5
if: ${{ ! cancelled() && ( steps.check-stable.outcome != 'success' || steps.check-nightly.outcome != 'success' ) }}
with:
text: "Hey @psiinon.bsky.social - looks like the overnight ZAP Check failed 😟 https://github.com/zaproxy/zaproxy/actions/runs/${{ github.run_id }}"
identifier: ${{ secrets.BLUESKY_ZAPBOT_IDENTIFIER }}
password: ${{ secrets.BLUESKY_ZAPBOT_PASSWORD }}
- name: "Fail if necessary"
if: steps.check-stable.outcome != 'success' || steps.check-nightly.outcome != 'success'
run: exit 1
12 changes: 0 additions & 12 deletions .github/workflows/run-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -66,15 +66,3 @@ jobs:
name: Run baseline tests
if: ${{ ! cancelled() }}
run: docker run --rm -t ghcr.io/zaproxy/zaproxy-tests wrk/baseline_tests.sh
- name: "Send messages on failures"
uses: myConsciousness/bluesky-post@96827d0a9604cb228b11b3095f6961196efba4a0 # v5
if: |
! cancelled() && (
steps.test-install.outcome != 'success' ||
steps.test-python.outcome != 'success' ||
steps.test-af-context.outcome != 'success' ||
steps.test-af-plan.outcome != 'success')
with:
text: "Hey @psiinon.bsky.social - looks like the ZAP Integration Tests failed 😟 https://github.com/zaproxy/zaproxy/actions/runs/${{ github.run_id }}"
identifier: ${{ secrets.BLUESKY_ZAPBOT_IDENTIFIER }}
password: ${{ secrets.BLUESKY_ZAPBOT_PASSWORD }}
3 changes: 3 additions & 0 deletions docker/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
# Changelog
All notable changes to the docker containers will be documented in this file.

### 2026-05-08
- Fixed bug in baseline scan which could result in a python error when running the packaged scan without a mapped drive.

### 2026-03-10
- Use alert references in "Alert on HTTP Response Code Errors" script to avoid duplicates (Issue 9273).

Expand Down
2 changes: 1 addition & 1 deletion docker/zap-baseline.py
Original file line number Diff line number Diff line change
Expand Up @@ -446,7 +446,7 @@ def main(argv):

# Generate the yaml file
home_dir = str(Path.home())
yaml_file = os.path.join(base_dir, 'zap.yaml')
yaml_file = os.path.join(home_dir, 'zap.yaml')
summary_file = os.path.join(home_dir, 'zap_out.json')
generate_af_plan(yaml_file, summary_file, target, out_of_scope_dict, debug, mins, ajax, timeout, delay,
detailed_output, config_dict, config_msg, report_html, report_md, report_xml,
Expand Down
Loading