-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply security best practices into workflows and Docker file (#270)
Signed-off-by: Taras Drozdovskyi <t.drozdovsky@samsung.com>
- Loading branch information
1 parent
9b6fd69
commit b19fe7b
Showing
10 changed files
with
72 additions
and
14 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,18 +1,32 @@ | ||
version: 2 | ||
updates: | ||
# Enable version updates for maven | ||
- package-ecosystem: "maven" | ||
directory: "/" | ||
- package-ecosystem: maven | ||
directory: / | ||
# Check for updates once a month | ||
schedule: | ||
interval: "monthly" | ||
interval: monthly | ||
open-pull-requests-limit: 15 | ||
# Enable version updates for Actions | ||
- package-ecosystem: "github-actions" | ||
- package-ecosystem: github-actions | ||
# Look for `.github/workflows` in the `root` directory | ||
directory: ".github/workflows/" | ||
directory: .github/workflows/ | ||
# Check for updates once a month | ||
schedule: | ||
interval: "monthly" | ||
interval: monthly | ||
# Allow up to 15 open pull requests for github-actions dependencies | ||
open-pull-requests-limit: 15 | ||
open-pull-requests-limit: 15 | ||
# Enable version updates for Docker | ||
- package-ecosystem: docker | ||
directory: / | ||
schedule: | ||
interval: monthly | ||
# Allow up to 15 open pull requests for docker dependencies | ||
open-pull-requests-limit: 15 | ||
# Enable version updates for Docker | ||
- package-ecosystem: npm | ||
directory: /frontend | ||
schedule: | ||
interval: monthly | ||
# Allow up to 15 open pull requests for nmp dependencies | ||
open-pull-requests-limit: 15 |
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
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
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