Skip to content
Merged
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
54 changes: 54 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
version: 2

updates:
- package-ecosystem: nuget
directory: /
schedule:
interval: weekly
day: monday
cooldown:
default: 7
major: 14
groups:
dotnet:
patterns: ["*"]
open-pull-requests-limit: 5

- package-ecosystem: npm
directory: /
schedule:
interval: weekly
day: monday
cooldown:
default: 7
major: 14
groups:
npm-root:
patterns: ["*"]
open-pull-requests-limit: 5

- package-ecosystem: npm
directory: /VueApp
schedule:
interval: weekly
day: monday
cooldown:
default: 7
major: 14
groups:
npm-vueapp:
patterns: ["*"]
open-pull-requests-limit: 5

- package-ecosystem: github-actions
directory: /
schedule:
interval: weekly
day: monday
cooldown:
default: 7
major: 14
groups:
actions:
patterns: ["*"]
open-pull-requests-limit: 5
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
min-release-age=7
Comment thread
rlorenzo marked this conversation as resolved.
6 changes: 4 additions & 2 deletions JenkinsFile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ def copyOfflineOperations = [
]
pipeline {
agent any
tools { nodejs "NodeJS 24.14.0" }
tools { nodejs "NodeJS 24.14.1" }
options {
skipStagesAfterUnstable()
skipDefaultCheckout()
Expand Down Expand Up @@ -52,7 +52,9 @@ pipeline {
parallel(
npm: {
bat 'pushd VueApp && npm install --prefer-offline --no-audit --no-fund && popd'
bat 'npm audit --prefix VueApp --omit=dev --audit-level=high'
catchError(buildResult: 'SUCCESS', stageResult: 'UNSTABLE') {
Comment thread
rlorenzo marked this conversation as resolved.
bat 'npm audit --prefix VueApp --omit=dev --audit-level=high'
}
},
dotnet: {
bat '"C:\\Program Files\\dotnet\\dotnet" tool restore'
Expand Down
1 change: 1 addition & 0 deletions VueApp/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
min-release-age=7
Comment thread
rlorenzo marked this conversation as resolved.
Loading
Loading