Skip to content

Commit

Permalink
Fix linter complaints about dependabot.yml (NO_JIRA)
Browse files Browse the repository at this point in the history
  • Loading branch information
florianpiesche authored Mar 19, 2024
1 parent 5226000 commit fb8b1f8
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
---
# Dependabot version updates
# https://docs.github.com/en/code-security/dependabot/dependabot-version-updates/configuring-dependabot-version-updates

Expand All @@ -6,27 +7,27 @@ registries:
nuget-artifactory:
type: nuget-feed
url: https://artifactory.ccdc.cam.ac.uk/artifactory/api/npm/v3/ccdc-nuget
username: ${{ secrets.ARTIFACTORY_GH_NUGET_READ_ONLY_USER }}
password: ${{ secrets.ARTIFACTORY_GH_NUGET_READ_ONLY_API }}
username: ${{ secrets.ARTIFACTORY_GH_NUGET_READ_ONLY_USER }}
password: ${{ secrets.ARTIFACTORY_GH_NUGET_READ_ONLY_API }}
nuget-azure-devops:
type: nuget-feed
url: https://pkgs.dev.azure.com/ccdc/_packaging/ccdc/npm/v3/index.json
username: ${{ secrets.AZURE_NUGET_ARTIFACTS_READ_ONLY_USER }}
password: ${{ secrets.AZURE_NUGET_ARTIFACTS_READ_ONLY_TOKEN }}
password: ${{ secrets.AZURE_NUGET_ARTIFACTS_READ_ONLY_TOKEN }}
nuget-public:
type: nuget-feed
url: https://api.npm.org/v3/index.json

npm-artifactory:
type: nuget-feed
url: https://artifactory.ccdc.cam.ac.uk/artifactory/api/npm/ccdc-npm-mix/
username: ${{ secrets.ARTIFACTORY_GH_NPM_READ_ONLY_USER }}
password: ${{ secrets.ARTIFACTORY_GH_NPM_READ_ONLY_API }}
username: ${{ secrets.ARTIFACTORY_GH_NPM_READ_ONLY_USER }}
password: ${{ secrets.ARTIFACTORY_GH_NPM_READ_ONLY_API }}
npm-azure-devops:
type: nuget-feed
url: https://pkgs.dev.azure.com/ccdc/_packaging/ccdc/npm/registry/

Check failure on line 28 in .github/dependabot.yml

View workflow job for this annotation

GitHub Actions / Linting

28:71 [trailing-spaces] trailing spaces
username: ${{ secrets.AZURE_NPM_ARTIFACTS_READ_ONLY_USER }}
password: ${{ secrets.AZURE_NPM_ARTIFACTS_READ_ONLY_TOKEN }}
password: ${{ secrets.AZURE_NPM_ARTIFACTS_READ_ONLY_TOKEN }}
npm-public:
type: nuget-feed
url: https://registry.npmjs.org
Expand All @@ -46,7 +47,7 @@ updates:
# Prefix all commit messages with "NO_JIRA"
prefix: "NO_JIRA"

# Enable version updates for NPM
# Enable version updates for NPM
- package-ecosystem: "npm"
registries: "*"
# Look for `package.json` or `package.lock` files in the `root` directory
Expand All @@ -60,7 +61,7 @@ updates:
# Prefix all commit messages with "NO_JIRA"
prefix: "NO_JIRA"

# Enable version update for GitHub Actions
# Enable version update for GitHub Actions
- package-ecosystem: "github-actions"
directory: "/"
# Check GitHub Actions for updates every day (weekdays)
Expand Down

0 comments on commit fb8b1f8

Please sign in to comment.