-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fcb9b0f
commit 09d71a7
Showing
2 changed files
with
159 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,59 @@ | ||
name: ZAP Scan | ||
|
||
on: | ||
- push | ||
- pull_request | ||
|
||
jobs: | ||
contract-tests: | ||
name: Scan security vulnerabilities | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/[email protected] | ||
|
||
- name: Set up Python 3.10 | ||
uses: actions/[email protected] | ||
with: | ||
python-version: "3.10" | ||
|
||
- name: Upgrade pip | ||
run: | | ||
pip install --constraint=$GITHUB_WORKSPACE/.github/workflows/constraints.txt pip | ||
pip --version | ||
- name: Upgrade pip in virtual environments | ||
shell: python | ||
run: | | ||
import os | ||
import pip | ||
with open(os.environ["GITHUB_ENV"], mode="a") as io: | ||
print(f"VIRTUALENV_PIP={pip.__version__}", file=io) | ||
- name: Install Poetry | ||
run: | | ||
pipx install --pip-args=--constraint=$GITHUB_WORKSPACE/.github/workflows/constraints.txt poetry | ||
poetry --version | ||
- name: Install GDAL | ||
run: | | ||
sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable | ||
sudo apt-get update | ||
sudo apt-get install gdal-bin libgdal-dev | ||
- name: Install fastgeoapi and run the server with API-KEY protection | ||
env: | ||
ENV_STATE: dev | ||
OPA_ENABLED: false | ||
API_KEY_ENABLED: true | ||
JWKS_ENABLED: false | ||
run: | | ||
poetry install | ||
ENV_STATE=$ENV_STATE | ||
OPA_ENABLED=$OPA_ENABLED | ||
API_KEY_ENABLED=$API_KEY_ENABLED | ||
JWKS_ENABLED=$JWKS_ENABLED | ||
poetry run uvicorn app.main:app --host 0.0.0.0 --port 5000 --reload --loop asyncio & | ||
- name: ZAP Scan | ||
uses: zaproxy/[email protected] | ||
with: | ||
target: "http://127.0.0.1:5000/geoapi/" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters