Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add npm dependencies handling dependabot configuration #1012

Open
wants to merge 16 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 11 additions & 5 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
version: 2
updates:
- package-ecosystem: gomod
directory: "/"
directory: '/'
schedule:
interval: weekly
day: sunday
time: "10:00"
timezone: Etc/UCT
interval: 'weekly'
labels:
- 'dependencies'
ignore:
- dependency-name: github.com/onsi/ginkgo
versions:
Expand All @@ -15,3 +14,10 @@ updates:
versions:
- 1.8.0
- 1.8.1
- package-ecosystem: 'npm'
directory: '/'
schedule:
interval: 'weekly'
labels:
- 'dependencies'
versioning-strategy: increase
2 changes: 1 addition & 1 deletion internal/archive/testdata/mtahtml5/mta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# ----Executing build for module ui5app -------
# installing module dependencies & execute grunt & remove dev dependencies
(npm install && grunt && npm prune production ) &
(npm install && grunt && npm prune production) &
# wait to the process to finish
wait
# Pack module after build for deployment
Expand Down
2 changes: 1 addition & 1 deletion internal/archive/testdata/testproject/mta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# ----Executing build for module ui5app -------
# installing module dependencies & execute grunt & remove dev dependencies
(npm install && grunt && npm prune production ) &
(npm install && grunt && npm prune production) &
# wait to the process to finish
wait
# Pack module after build for deployment
Expand Down
2 changes: 1 addition & 1 deletion internal/buildops/testdata/mtahtml5/mta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# ----Executing build for module ui5app -------
# installing module dependencies & execute grunt & remove dev dependencies
(npm install && grunt && npm prune production ) &
(npm install && grunt && npm prune production) &
# wait to the process to finish
wait
# Pack module after build for deployment
Expand Down
2 changes: 1 addition & 1 deletion internal/buildops/testdata/testproject/mta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# ----Executing build for module ui5app -------
# installing module dependencies & execute grunt & remove dev dependencies
(npm install && grunt && npm prune production ) &
(npm install && grunt && npm prune production) &
# wait to the process to finish
wait
# Pack module after build for deployment
Expand Down
2 changes: 1 addition & 1 deletion internal/exec/testdata/mtahtml5/mta.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@

# ----Executing build for module ui5app -------
# installing module dependencies & execute grunt & remove dev dependencies
(npm install && grunt && npm prune production ) &
(npm install && grunt && npm prune production) &
# wait to the process to finish
wait
# Pack module after build for deployment
Expand Down