Skip to content

Commit cf541b4

Browse files
committed
ci: drop safety check since we now use renovate + ghs
1 parent 0fb7903 commit cf541b4

File tree

2 files changed

+1
-63
lines changed

2 files changed

+1
-63
lines changed

.github/workflows/dev.yml

Lines changed: 1 addition & 32 deletions
Original file line numberDiff line numberDiff line change
@@ -78,39 +78,8 @@ jobs:
7878
- name: Check the safety of the codebase with Bandit
7979
run: bandit --ini=setup.cfg -r PyFunceble
8080

81-
deps_safety_check:
82-
name: Check the safety of our dependencies.
83-
84-
runs-on: "${{ matrix.os }}"
85-
86-
strategy:
87-
fail-fast: false
88-
matrix:
89-
python_version:
90-
- "3.12"
91-
os:
92-
- ubuntu-latest
93-
94-
steps:
95-
- uses: actions/checkout@v6
96-
name: Clone repository
97-
98-
- name: Set up Python ${{ matrix.python_version }}
99-
uses: actions/setup-python@v6
100-
with:
101-
python-version: ${{ matrix.python_version }}
102-
103-
- name: Install dependencies
104-
run: |
105-
pip install --upgrade pip
106-
pip install .
107-
pip install safety
108-
109-
- name: Check the safety of our dependencies.
110-
run: safety check -i 51668 -i 62044 -i 67599 -i 70612
111-
11281
test:
113-
needs: [lint, deps_safety_check, sec_check]
82+
needs: [lint, sec_check]
11483
name: "[${{ matrix.os }}-py${{ matrix.python_version }}] Test PyFunceble"
11584

11685
runs-on: "${{ matrix.os }}"

.github/workflows/stable.yml

Lines changed: 0 additions & 31 deletions
Original file line numberDiff line numberDiff line change
@@ -48,37 +48,6 @@ jobs:
4848
- name: Lint tests with Pylint
4949
run: pylint tests
5050

51-
deps_safety_check:
52-
name: Check the safety of our dependencies.
53-
54-
runs-on: "${{ matrix.os }}"
55-
56-
strategy:
57-
fail-fast: false
58-
matrix:
59-
python_version:
60-
- "3.12"
61-
os:
62-
- ubuntu-latest
63-
64-
steps:
65-
- uses: actions/checkout@v6
66-
name: Clone repository
67-
68-
- name: Set up Python ${{ matrix.python_version }}
69-
uses: actions/setup-python@v6
70-
with:
71-
python-version: ${{ matrix.python_version }}
72-
73-
- name: Install dependencies
74-
run: |
75-
pip install --upgrade pip
76-
pip install .
77-
pip install safety
78-
79-
- name: Check the safety of our dependencies.
80-
run: safety check -i 51668 -i 62044 -i 67599 -i 70612
81-
8251
sec_check:
8352
name: Check the safety of PyFunceble
8453

0 commit comments

Comments
 (0)