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

Update ignore section of with example for github-actions : configuration-options-for-the-dependabot.yml-file.md #32149

Merged
merged 3 commits into from
Mar 21, 2024
Merged
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
Original file line number Diff line number Diff line change
Expand Up @@ -418,6 +418,14 @@
# For AWS SDK, ignore all patch updates for version updates only
- dependency-name: "aws-sdk"
update-types: ["version-update:semver-patch"]
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
interval: 'weekly'
ignore:
- dependency-name: 'actions/checkout'
# For GitHub Actions, ignore all updates greater than or equal to version 3
versions: '>= 3'
```

{% note %}
Expand Down Expand Up @@ -895,9 +903,9 @@
- Docker
- Gradle
- Maven
- npm

Check warning on line 906 in content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md

View workflow job for this annotation

GitHub Actions / lint-content

First word of list item should be capitalized

Expected: Npm
- Nuget{% ifversion dependabot-updates-pub-private-registry %}
- pub{% endif %}

Check warning on line 908 in content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md

View workflow job for this annotation

GitHub Actions / lint-content

First word of list item should be capitalized

Expected: Pub{%
- Python
- Yarn

Expand Down Expand Up @@ -1036,7 +1044,7 @@

{% endraw %}

{% ifversion dependabot-hex-self-hosted-support %}

Check warning on line 1047 in content/code-security/dependabot/dependabot-version-updates/configuration-options-for-the-dependabot.yml-file.md

View workflow job for this annotation

GitHub Actions / lint-content

Liquid `ifversion` (and `elsif`) should not always be true

The Liquid ifversion condition 'dependabot-hex-self-hosted-support' includes all possible versions and will always be true

### `hex-repository`

Expand Down
Loading