File tree 7 files changed +102
-16
lines changed
7 files changed +102
-16
lines changed Original file line number Diff line number Diff line change
1
+ ---
2
+ # For most projects, this workflow file will not need changing; you simply need
3
+ # to commit it to your repository.
4
+ #
5
+ # You may wish to alter this file to override the set of languages analyzed,
6
+ # or to provide custom queries or build logic.
7
+ #
8
+ # ******** NOTE ********
9
+ # We have attempted to detect the languages in your repository. Please check
10
+ # the `language` matrix defined below to confirm you have the correct set of
11
+ # supported CodeQL languages.
12
+ #
13
+ name : " CodeQL"
14
+ on : # yamllint disable-line rule:truthy
15
+ push :
16
+ branches :
17
+ - main
18
+ - develop
19
+ pull_request :
20
+ branches :
21
+ - main
22
+ - develop
23
+
24
+ jobs :
25
+ analyze :
26
+ name : Analyze
27
+ runs-on : ubuntu-latest
28
+
29
+ steps :
30
+ - name : Checkout repository
31
+ uses : actions/checkout@v2
32
+
33
+ - name : Initialize CodeQL
34
+ uses : github/codeql-action/init@v1
35
+ with :
36
+ languages : python
37
+
38
+ - name : Autobuild
39
+ uses : github/codeql-action/autobuild@v1
40
+
41
+ - name : Perform CodeQL Analysis
42
+ uses : github/codeql-action/analyze@v1
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : GitGuardian scan
3
+ on : # yamllint disable-line rule:truthy
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ scanning :
9
+ name : GitGuardian scan
10
+ runs-on : ubuntu-latest
11
+ steps :
12
+ - name : Checkout
13
+ uses : actions/checkout@v2
14
+ with :
15
+ fetch-depth : 0
16
+
17
+ - name : GitGuardian scan
18
+ uses : GitGuardian/gg-shield-action@master
19
+ env :
20
+ GITHUB_PUSH_BEFORE_SHA : ${{ github.event.before }}
21
+ GITHUB_PUSH_BASE_SHA : ${{ github.event.base }}
22
+ GITHUB_PULL_BASE_SHA : ${{ github.event.pull_request.base.sha }}
23
+ GITHUB_DEFAULT_BRANCH : ${{ github.event.repository.default_branch }}
24
+ GITGUARDIAN_API_KEY : ${{ secrets.GITGUARDIAN_API_KEY }}
Original file line number Diff line number Diff line change
1
+ ---
2
+ name : Yaml Lint
3
+ on : # yamllint disable-line rule:truthy
4
+ push :
5
+ pull_request :
6
+
7
+ jobs :
8
+ yamllint :
9
+ runs-on : ubuntu-latest
10
+ steps :
11
+ - name : Checkout
12
+ uses : actions/checkout@v1
13
+
14
+ - name : YAML Lint and Annotate
15
+
16
+ with :
17
+ token : ${{ secrets.GITHUB_TOKEN }}
18
+ # # The target path is processed recursively
19
+ target-path : .
Original file line number Diff line number Diff line change 1
- ---
2
- repos :
3
- - repo : https://github.com/adrienverge/yamllint.git
4
- sha : v1.26.3
5
- hooks :
6
- - id : yamllint
7
- - repo : https://github.com/PyCQA/flake8
8
- rev : 5.0.4
9
- hooks :
10
- - id : flake8
11
- args : [--max-line-length=150]
1
+ ---
2
+ repos :
3
+ - repo : https://github.com/adrienverge/yamllint.git
4
+ sha : v1.26.3
5
+ hooks :
6
+ - id : yamllint
7
+ - repo : https://github.com/PyCQA/flake8
8
+ rev : 5.0.4
9
+ hooks :
10
+ - id : flake8
11
+ args : [--max-line-length=150]
Original file line number Diff line number Diff line change @@ -7,13 +7,16 @@ Reading and following these guidelines will help me make the contribution proces
7
7
## Quicklinks
8
8
9
9
- [ Contributing to pynipper-ng] ( #contributing-to-pynipper-ng )
10
+ - [ Quicklinks] ( #quicklinks )
10
11
- [ Code of Conduct] ( #code-of-conduct )
11
12
- [ Getting Started] ( #getting-started )
12
13
- [ Issues] ( #issues )
13
14
- [ Pull Requests] ( #pull-requests )
14
15
- [ Core changes] ( #core-changes )
15
- - [ Implement a new device] ( #new-device )
16
- - [ Implement a new plugin] ( #new-plugin )
16
+ - [ New device] ( #new-device )
17
+ - [ New plugin] ( #new-plugin )
18
+ - [ Doubts or issues contributing] ( #doubts-or-issues-contributing )
19
+ >>>>>>> main
17
20
18
21
## Code of Conduct
19
22
Original file line number Diff line number Diff line change 1
1
# pynipper-ng 🔧
2
2
3
- _ Repository stats:_
4
-
5
3
[ ![ Documentation Status] ( https://readthedocs.org/projects/pynipper-ng/badge/?version=latest )] ( https://pynipper-ng.readthedocs.io/?badge=latest )
6
4
![ Latest release] ( https://img.shields.io/github/v/release/syn-4ck/pynipper-ng )
7
5
![ Latest release date] ( https://img.shields.io/github/release-date/syn-4ck/pynipper-ng )
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ click==8.1.7
7
7
# Used to fix vulnerability in requests package
8
8
certifi == 2024.8.30
9
9
# Used to fix vulnerability in click package
10
- zipp == 3.19.1
10
+ zipp == 3.19.1
You can’t perform that action at this time.
0 commit comments