|
| 1 | +# Dependabot version updates |
| 2 | +# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates |
| 3 | + |
| 4 | +version: 2 |
| 5 | +registries: |
| 6 | + nuget-artifactory: |
| 7 | + type: nuget-feed |
| 8 | + url: https://artifactory.ccdc.cam.ac.uk/artifactory/api/npm/v3/ccdc-nuget |
| 9 | + username: ${{ secrets.ARTIFACTORY_GH_NUGET_READ_ONLY_USER }} |
| 10 | + password: ${{ secrets.ARTIFACTORY_GH_NUGET_READ_ONLY_API }} |
| 11 | + nuget-azure-devops: |
| 12 | + type: nuget-feed |
| 13 | + url: https://pkgs.dev.azure.com/ccdc/_packaging/ccdc/npm/v3/index.json |
| 14 | + username: ${{ secrets.AZURE_NUGET_ARTIFACTS_READ_ONLY_USER }} |
| 15 | + password: ${{ secrets.AZURE_NUGET_ARTIFACTS_READ_ONLY_TOKEN }} |
| 16 | + |
| 17 | + npm-artifactory: |
| 18 | + type: nuget-feed |
| 19 | + url: https://artifactory.ccdc.cam.ac.uk/artifactory/api/npm/ccdc-npm-mix/ |
| 20 | + username: ${{ secrets.ARTIFACTORY_GH_NPM_READ_ONLY_USER }} |
| 21 | + password: ${{ secrets.ARTIFACTORY_GH_NPM_READ_ONLY_API }} |
| 22 | + npm-azure-devops: |
| 23 | + type: nuget-feed |
| 24 | + url: https://pkgs.dev.azure.com/ccdc/_packaging/ccdc/npm/registry/ |
| 25 | + username: ${{ secrets.AZURE_NPM_ARTIFACTS_READ_ONLY_USER }} |
| 26 | + password: ${{ secrets.AZURE_NPM_ARTIFACTS_READ_ONLY_TOKEN }} |
| 27 | + |
| 28 | +updates: |
| 29 | + # Enable version updates for NuGet |
| 30 | + - package-ecosystem: "nuget" |
| 31 | + registries: "*" |
| 32 | + # Look for `*.csproj` or `*.sln` files in the `root` directory |
| 33 | + directory: "/" |
| 34 | + # Check the NuGet registry for updates every day (weekdays) |
| 35 | + schedule: |
| 36 | + interval: "daily" |
| 37 | + time: "15:30" |
| 38 | + timezone: "Europe/London" |
| 39 | + commit-message: |
| 40 | + # Prefix all commit messages with "NO_JIRA" |
| 41 | + prefix: "NO_JIRA" |
| 42 | + |
| 43 | + # Enable version updates for NPM |
| 44 | + - package-ecosystem: "npm" |
| 45 | + registries: "*" |
| 46 | + # Look for `package.json` or `package.lock` files in the `root` directory |
| 47 | + directory: "/" |
| 48 | + # Check the NPM registry for updates every day (weekdays) |
| 49 | + schedule: |
| 50 | + interval: "daily" |
| 51 | + time: "15:30" |
| 52 | + timezone: "Europe/London" |
| 53 | + commit-message: |
| 54 | + # Prefix all commit messages with "NO_JIRA" |
| 55 | + prefix: "NO_JIRA" |
| 56 | + |
| 57 | +# Enable version update for GitHub Actions |
| 58 | + - package-ecosystem: "github-actions" |
| 59 | + directory: "/" |
| 60 | + # Check GitHub Actions for updates every day (weekdays) |
| 61 | + schedule: |
| 62 | + interval: "daily" |
| 63 | + time: "15:30" |
| 64 | + timezone: "Europe/London" |
| 65 | + commit-message: |
| 66 | + # Prefix all commit messages with "NO_JIRA" |
| 67 | + prefix: "NO_JIRA" |
0 commit comments