-
Notifications
You must be signed in to change notification settings - Fork 564
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
dcf68c8
commit acbece2
Showing
6 changed files
with
99 additions
and
0 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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
name: Scan Dependencies Microservices | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'src/Microservices/**' | ||
pull_request: | ||
paths: | ||
- 'src/Microservices/**' | ||
schedule: | ||
- cron: '0 * * * *' | ||
|
||
jobs: | ||
build: | ||
|
||
defaults: | ||
run: | ||
working-directory: src/Microservices | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 8.0.100 | ||
|
||
- name: dotnet restore | ||
run: dotnet restore | ||
|
||
- name: dotnet list package --vulnerable | ||
run: dotnet list package --vulnerable |
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,33 @@ | ||
name: Scan Dependencies Modular Monolith | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'src/ModularMonolith/**' | ||
pull_request: | ||
paths: | ||
- 'src/ModularMonolith/**' | ||
schedule: | ||
- cron: '0 * * * *' | ||
|
||
jobs: | ||
build: | ||
|
||
defaults: | ||
run: | ||
working-directory: src/ModularMonolith | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 8.0.100 | ||
|
||
- name: dotnet restore | ||
run: dotnet restore | ||
|
||
- name: dotnet list package --vulnerable | ||
run: dotnet list package --vulnerable |
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,33 @@ | ||
name: Scan Dependencies Monolith | ||
|
||
on: | ||
push: | ||
paths: | ||
- 'src/Monolith/**' | ||
pull_request: | ||
paths: | ||
- 'src/Monolith/**' | ||
schedule: | ||
- cron: '0 * * * *' | ||
|
||
jobs: | ||
build: | ||
|
||
defaults: | ||
run: | ||
working-directory: src/Monolith | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup .NET Core | ||
uses: actions/setup-dotnet@v1 | ||
with: | ||
dotnet-version: 8.0.100 | ||
|
||
- name: dotnet restore | ||
run: dotnet restore | ||
|
||
- name: dotnet list package --vulnerable | ||
run: dotnet list package --vulnerable |
File renamed without changes.
File renamed without changes.
File renamed without changes.