8000 setup-python by felickz · Pull Request #2 · octodemo-forks/felickz-advanced-security-python · GitHub
[go: up one dir, main page]

Skip to content

setup-python #2

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
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
12 changes: 12 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,18 @@ jobs:
# Details on CodeQL's query packs refer to : https://docs.github.com/en/code-security/code-scanning/automatically-scanning-your-code-for-vulnerabilities-and-errors/configuring-code-scanning#using-queries-in-ql-packs
# queries: security-extended,security-and-quality
queries: security-extended

- name: Setup Python Step
uses: actions/setup-python@v4.2.0
with:
# Version range or exact version of Python or PyPy to use, using SemVer's version range syntax. Reads from .python-version if unset.
python-version: '3.7' # optional
# Used to specify a package manager for caching in the default directory. Supported values: pip, pipenv, poetry.
cache: pipenv # optional
cache-dependency-path: |
Pipfile.lock
# Set this option if you want the action to check for the latest available version that satisfies the version spec.
check-latest: true # optional


# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
Expand Down
0