Skip to content

Commit

Permalink
Fix safety check
Browse files Browse the repository at this point in the history
  • Loading branch information
funilrys committed Dec 19, 2023
1 parent 6dee931 commit 180d05e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/branches.yml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ jobs:
pip install safety
- name: Check the safety of our dependencies.
run: safety check -i 51668
run: safety check -i 51668 -i 62044

test:
needs: [lint, deps_safety_check]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
pip install safety
- name: Check the safety of our dependencies.
run: safety check -i 51668
run: safety check -i 51668 -i 62044

test:
needs: [lint, deps_safety_check]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/stable.yml
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ jobs:
pip install safety
- name: Check the safety of our dependencies.
run: safety check -i 51668
run: safety check -i 51668 -i 62044

test:
needs: [lint, deps_safety_check]
Expand Down

0 comments on commit 180d05e

Please sign in to comment.