-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #57 from joreiche/master
support for split model files, restructured to allow import by other projects, improved command line syntax by use of `cobra`, and more...
- Loading branch information
Showing
223 changed files
with
31,458 additions
and
20,186 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 |
---|---|---|
@@ -1,4 +1,9 @@ | ||
**/.git | ||
**/.gitignore | ||
**/.DS_Store | ||
**/*.tmp | ||
**/*.tmp | ||
|
||
.github | ||
.dockerignore | ||
Dockerfile | ||
Dockerfile.* |
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
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
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 |
---|---|---|
@@ -0,0 +1,24 @@ | ||
name: Security Static Analysis | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [master] | ||
schedule: | ||
- cron: '0 0 1 * *' | ||
|
||
jobs: | ||
analyze: | ||
name: GoSec | ||
runs-on: ubuntu-latest | ||
env: | ||
GO111MODULE: on | ||
steps: | ||
- name: Checkout Source | ||
uses: actions/checkout@v4 | ||
- name: Run Gosec | ||
uses: securego/gosec@master | ||
with: | ||
args: ./... |
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
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 |
---|---|---|
@@ -0,0 +1,47 @@ | ||
ignore: | ||
- vulnerability: CVE-2023-42363 | ||
reason: | ||
busybox(1.36.1-r15) - no upstream fix available | ||
busybox-binsh(1.36.1-r15) - no upstream fix available | ||
- vulnerability: CVE-2023-42364 | ||
reason: | ||
busybox(1.36.1-r15) - no upstream fix available | ||
busybox-binsh(1.36.1-r15) - no upstream fix available | ||
- vulnerability: CVE-2023-42365 | ||
reason: | ||
busybox(1.36.1-r15) - no upstream fix available | ||
busybox-binsh(1.36.1-r15) - no upstream fix available | ||
- vulnerability: CVE-2023-42366 | ||
reason: | ||
busybox(1.36.1-r15) - no upstream fix available | ||
busybox-binsh(1.36.1-r15) - no upstream fix available | ||
- vulnerability: CVE-2014-9157 | ||
reason: | ||
graphviz(8.0.5-r1) - no upstream fix available | ||
graphviz-libs(8.0.5-r1) - no upstream fix available | ||
- vulnerability: CVE-2023-37769 | ||
reason: pixman(0.42.2-r1) - no upstream fix available | ||
- vulnerability: CVE-2023-43789 | ||
reason: libxpm(3.5.16-r1) - no upstream fix available | ||
- vulnerability: CVE-2023-42363 | ||
reason: ssl_client(1.36.1-r5) - no upstream fix available | ||
- vulnerability: CVE-2023-42364 | ||
reason: ssl_client(1.36.1-r5) - no upstream fix available | ||
- vulnerability: CVE-2023-42365 | ||
reason: ssl_client(1.36.1-r5) - no upstream fix available | ||
- vulnerability: CVE-2015-7313 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available | ||
- vulnerability: CVE-2023-3164 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available | ||
- vulnerability: CVE-2023-40745 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available | ||
- vulnerability: CVE-2023-41175 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available | ||
- vulnerability: CVE-2023-6228 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available | ||
- vulnerability: CVE-2023-6277 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available | ||
- vulnerability: CVE-2023-52355 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available | ||
- vulnerability: CVE-2023-52356 | ||
reason: tiff( 4.5.1-r0) - no upstream fix available |
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
Oops, something went wrong.