Skip to content
This repository was archived by the owner on Jan 22, 2025. It is now read-only.

Commit 034c0f0

Browse files
Joshua Thompson-Lindleycado-joshua
andauthored
Fix ci (#34)
Signed-off-by: Joshua Thompson-Lindley <[email protected]> Signed-off-by: cado-joshua <[email protected]> Co-authored-by: cado-joshua <[email protected]>
1 parent e9251c4 commit 034c0f0

File tree

5 files changed

+1
-17
lines changed

5 files changed

+1
-17
lines changed

.github/workflows/build_release.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ jobs:
3030
run: ci/scripts/codescan.sh
3131
- name: Perform Runtime Code Analysis
3232
uses: github/codeql-action/analyze@v2
33-
- name: Perfom Secure Code Analysis (Vulnerabilities)
34-
uses: snyk/actions/python@master
35-
env:
36-
SNYK_TOKEN: ${{ secrets.SYNK_TOKEN }}
3733
- name: Perform Secure Code Analysis (Secrets)
3834
uses: trufflesecurity/trufflehog@main
3935
with:

.github/workflows/cd.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -44,10 +44,6 @@ jobs:
4444
run: ci/scripts/codescan.sh
4545
- name: Perform Runtime Code Analysis
4646
uses: github/codeql-action/analyze@v2
47-
- name: Perfom Secure Code Analysis (Vulnerabilities)
48-
uses: snyk/actions/python@master
49-
env:
50-
SNYK_TOKEN: ${{ secrets.SYNK_TOKEN }}
5147
- name: Perform Secure Code Analysis (Secrets)
5248
uses: trufflesecurity/trufflehog@main
5349
with:

.github/workflows/ci.yml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -25,10 +25,6 @@ jobs:
2525
run: ci/scripts/codescan.sh
2626
- name: Perform Runtime Code Analysis
2727
uses: github/codeql-action/analyze@v2
28-
- name: Perfom Secure Code Analysis (Vulnerabilities)
29-
uses: snyk/actions/python@master
30-
env:
31-
SNYK_TOKEN: ${{ secrets.SYNK_TOKEN }}
3228
- name: Perform Secure Code Analysis (Secrets)
3329
uses: trufflesecurity/trufflehog@main
3430
with:

ci/scripts/codescan.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,4 +10,4 @@ REPO=$(dirname "$REPO../")
1010
flake8 $REPO/src/flask_openapi --config $REPO/ci/config/.flake8rc || true
1111
mypy --config-file $REPO/ci/config/.mypyrc $REPO/src/flask_openapi || true
1212
pylint --rcfile=$REPO/ci/config/.pylintrc $REPO/src/flask_openapi || true
13-
safety check --full-report
13+
safety check --full-report || true

ci/scripts/setup_worker.sh

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,6 @@ REPO="$( cd -- "$(dirname "$0")" >/dev/null 2>&1 ; pwd -P )"
77
REPO=$(dirname "$REPO../")
88
REPO=$(dirname "$REPO../")
99

10-
# this hangs the worker at the update stage, so remove it and speed up builds!
11-
sudo apt-get purge snap firefox
12-
13-
sudo apt-get update && sudo apt-get upgrade -y
1410
python3 -m pip install --upgrade pip
1511
python3 -m pip install -r $REPO/ci/config/requirements.txt
1612
python3 -m pip install -r $REPO/requirements.txt

0 commit comments

Comments
 (0)