bump cryptography version as there are known vulnerabilities in cryptography <43.0.1 #110
Workflow file for this run
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
name: "Build Windows Executable" | |
on: | |
push: | |
branches: [release] | |
pull_request: | |
branches: [release] | |
jobs: | |
build: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.11" | |
- name: Install pip | |
run: python -m pip install --upgrade pip setuptools wheel | |
- name: Install sslyze dependencies | |
run: python -m pip install -e . | |
- name: Install dev dependencies including cx_freeze | |
run: python -m pip install -r requirements-dev.txt | |
- name: Build Windows executable | |
run: python setup.py build_exe | |
- uses: actions/upload-artifact@v2 | |
with: | |
path: ./build/* |