Bump actions/checkout from 4.1.7 to 4.2.0 #2131
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
on: [push, pull_request] | |
permissions: | |
contents: read | |
jobs: | |
ci: | |
if: ${{ github.actor != 'panther-bot-automation' }} | |
runs-on: ubuntu-latest | |
steps: | |
- uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1 | |
with: | |
disable-sudo: true | |
egress-policy: block | |
allowed-endpoints: > | |
files.pythonhosted.org:443 | |
github.com:443 | |
ipinfo.io:443 | |
pypi.org:443 | |
- name: Checkout | |
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 | |
- name: Setup Python | |
uses: actions/setup-python@f677139bbe7f9c59b41e40162b753c062f5d49a3 | |
with: | |
python-version: 3.11 | |
- name: Install pipenv | |
run: make install-pipenv | |
- name: Setup Virtual Environment | |
run: make venv | |
- name: Install Core Utilities | |
run: make install | |
- name: Install Dependencies | |
run: make deps | |
- name: Install Panther CLI | |
run: pipenv run -- pip3 install -e . | |
- name: Run CLI Tests | |
run: make ci | |