mirror of
https://github.com/cisagov/log4j-affected-db.git
synced 2024-11-22 08:30:48 +00:00
Merge branch 'develop' into update_B
This commit is contained in:
commit
80b25611cb
5 changed files with 24 additions and 3 deletions
5
.github/dependabot.yml
vendored
5
.github/dependabot.yml
vendored
|
@ -1,5 +1,10 @@
|
||||||
---
|
---
|
||||||
|
|
||||||
|
# Any ignore directives should be uncommented in downstream projects to disable
|
||||||
|
# Dependabot updates for the given dependency. Downstream projects will get
|
||||||
|
# these updates when the pull request(s) in the appropriate skeleton are merged
|
||||||
|
# and Lineage processes these changes.
|
||||||
|
|
||||||
version: 2
|
version: 2
|
||||||
updates:
|
updates:
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
|
|
2
.github/workflows/update_software_list.yml
vendored
2
.github/workflows/update_software_list.yml
vendored
|
@ -105,7 +105,7 @@ jobs:
|
||||||
run: |
|
run: |
|
||||||
git config user.name "${{ needs.setup.outputs.git_user }}"
|
git config user.name "${{ needs.setup.outputs.git_user }}"
|
||||||
git config user.email "${{ needs.setup.outputs.git_email }}"
|
git config user.email "${{ needs.setup.outputs.git_email }}"
|
||||||
- uses: lewagon/wait-on-check-action@v1.0.0
|
- uses: lewagon/wait-on-check-action@v1.1.1
|
||||||
with:
|
with:
|
||||||
check-name: lint
|
check-name: lint
|
||||||
ref: ${{ needs.setup.outputs.testing_branch }}
|
ref: ${{ needs.setup.outputs.testing_branch }}
|
||||||
|
|
|
@ -44,7 +44,17 @@ MD035:
|
||||||
# Enforce dashes for horizontal rules
|
# Enforce dashes for horizontal rules
|
||||||
style: "---"
|
style: "---"
|
||||||
|
|
||||||
# MD046/code-block-style Code block style
|
# MD046/code-block-style - Code block style
|
||||||
MD046:
|
MD046:
|
||||||
# Enforce the fenced style for code blocks
|
# Enforce the fenced style for code blocks
|
||||||
style: "fenced"
|
style: "fenced"
|
||||||
|
|
||||||
|
# MD049/emphasis-style - Emphasis style should be consistent
|
||||||
|
MD049:
|
||||||
|
# Enforce asterisks as the style to use for emphasis
|
||||||
|
style: "asterisk"
|
||||||
|
|
||||||
|
# MD050/strong-style - Strong style should be consistent
|
||||||
|
MD050:
|
||||||
|
# Enforce asterisks as the style to use for strong
|
||||||
|
style: "asterisk"
|
||||||
|
|
|
@ -31,7 +31,7 @@ repos:
|
||||||
|
|
||||||
# Text file hooks
|
# Text file hooks
|
||||||
- repo: https://github.com/igorshubovych/markdownlint-cli
|
- repo: https://github.com/igorshubovych/markdownlint-cli
|
||||||
rev: v0.30.0
|
rev: v0.31.1
|
||||||
hooks:
|
hooks:
|
||||||
- id: markdownlint
|
- id: markdownlint
|
||||||
args:
|
args:
|
||||||
|
|
|
@ -2,6 +2,12 @@
|
||||||
extends: default
|
extends: default
|
||||||
|
|
||||||
rules:
|
rules:
|
||||||
|
# yamllint does not like it when you comment out different parts of
|
||||||
|
# dictionaries in a list. You can see
|
||||||
|
# https://github.com/adrienverge/yamllint/issues/384 for some examples of
|
||||||
|
# this behavior.
|
||||||
|
comments-indentation: disable
|
||||||
|
|
||||||
# yamllint doesn't like when we use yes and no for true and false,
|
# yamllint doesn't like when we use yes and no for true and false,
|
||||||
# but that's pretty standard in Ansible.
|
# but that's pretty standard in Ansible.
|
||||||
truthy: disable
|
truthy: disable
|
||||||
|
|
Loading…
Reference in a new issue