-
Notifications
You must be signed in to change notification settings - Fork 116
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fixing invalid vulnerability report (#402)
* Fixing invalid vulnerability report * Removing some pinned items * more * pip upgrade
- Loading branch information
Showing
3 changed files
with
10 additions
and
47 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 |
---|---|---|
|
@@ -26,18 +26,22 @@ jobs: | |
steps: | ||
- uses: actions/checkout@v3 | ||
- name: install python | ||
uses: actions/setup-python@v3.1.2 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{env.pythonversion}} | ||
- name: create local poetry install | ||
run: | | ||
python -m venv .venv | ||
source .venv/bin/activate | ||
pip install --upgrade pip setuptools | ||
python -m pip install poetry | ||
poetry install | ||
- uses: trailofbits/[email protected] | ||
with: | ||
virtual-environment: .venv | ||
ignore-vulns: | | ||
GHSA-w596-4wvx-j9j6 # subversion related git dep, dependency for pytest. This is no impact here. | ||
GHSA-2p9h-ccw7-33gf # invalid ddos comment on the cleo package | ||
lint: | ||
name: Linter | ||
|
@@ -47,7 +51,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Python 3.9 | ||
uses: actions/setup-python@v4.3.0 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{env.pythonversion}} | ||
#---------------------------------------------- | ||
|
@@ -64,7 +68,7 @@ jobs: | |
#---------------------------------------------- | ||
- name: Load cached venv | ||
id: cached-poetry-dependencies | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v3 | ||
with: | ||
path: .venv | ||
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | ||
|
@@ -119,7 +123,7 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Python ${{ matrix.pyver }} | ||
uses: actions/setup-python@v4.3.0 | ||
uses: actions/setup-python@v4 | ||
with: | ||
python-version: ${{ matrix.pyver }} | ||
#---------------------------------------------- | ||
|
@@ -136,7 +140,7 @@ jobs: | |
#---------------------------------------------- | ||
- name: Load cached venv | ||
id: cached-poetry-dependencies | ||
uses: actions/cache@v3.0.11 | ||
uses: actions/cache@v3 | ||
with: | ||
path: .venv | ||
key: venv-${{ runner.os }}-${{ hashFiles('**/poetry.lock') }} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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