Security Testing
The CI/CD job called Security Testing is run on the latest version of the Ubuntu operating system and is dependent on the previously run Containerize and Publish Image job. It is intended to run security tests on an application, generate security testing reports and upload these reports as artefacts for later use.
Description
Run ZAP full scan: uses the zaproxy/action-full-scan@v0.10.0 action to perform a full security scan of the application running at http://app:3000. This step identifies potential security vulnerabilities in the application.
Store security testing results: using a command line script, this step creates a folder "full_scan_results", moves all html files to this folder and sets a variable "full_scan_result" containing the path to the stored results file. This step ensures that the results of the security scan are correctly stored for later use.
Upload security testing report: uses the actions/upload-artifact@v4 action to upload the security testing report as an artifact. The report is uploaded with a retention time of 5 days (retention-days: 5), allowing later review and analysis of the security testing results.