Skip to content

Commit 3d8e392

Browse files
committed
Bump yamllint version
1 parent 3e75b6d commit 3d8e392

File tree

4 files changed

+44
-2
lines changed

4 files changed

+44
-2
lines changed

.github/pull_request_template.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<!-- prettier-ignore-start -->
2+
<!-- markdownlint-disable-next-line MD041 -->
3+
## Readiness checklist
4+
<!-- prettier-ignore-end -->
5+
6+
Please check the boxes below to confirm that you have followed the
7+
required guidelines for contributions:
8+
9+
- [ ] If this pull request includes code changes, they were all properly tested. Automated tests where also included where possible.
10+
- [ ] This pull request includes the relevant documentation for this change (if applicable).
11+
- [ ] All the commits in this pull request where squashed into a single commit. That commit is [signed](https://docs.github.com/en/authentication/managing-commit-signature-verification).
12+
- [ ] If this pull request is about and existing issue, I added the `Fix #ISSUE_NUMBER` or `Close #ISSUE_NUMBER` text to the description of the pull request.

.github/workflows/yamllint.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ jobs:
2020
- name: Install YAMLLint
2121
shell: bash
2222
run: |
23-
pip install yamllint==1.36.0
23+
pip install yamllint==1.36.1
2424
msg="$(pip list --outdated | grep -e yamllint || true)"
2525
if [ -n "${msg}" ]; then
2626
>&2 echo "ERROR: outdated: ${msg}"

CONTRIBUTING.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# Contributing
2+
3+
## Creating an issue
4+
5+
If you have found a bug, want to request an enhancement or simply ask
6+
a question, feel free to open an
7+
[issue](https://github.com/thomasleplus/java-sql-inspector/issues/new/choose).
8+
9+
For security-related issues, please see our [security policy](/SECURITY.md).
10+
11+
## Submitting a pull request
12+
13+
If you want to contribute code, documentation etc. you can open a pull
14+
request. We then kindly ask that:
15+
16+
- before working or submitting a large pull request, please open an
17+
issue to discuss what you have in mind and check that there is not
18+
an existing solution or a different approach.
19+
- all code changes must be tested manually and automated tests should
20+
be included when possible.
21+
- all necessary documentation should be included as well.
22+
- commits on a single pull request must be squashed together to keep
23+
make reviews easier.
24+
- commits must be signed (this is supported by most Git clients as
25+
well as the GitHub web UI, see link below).
26+
27+
## Resources
28+
29+
- [Managing commit signature verification](https://docs.github.com/en/authentication/managing-commit-signature-verification)
30+
- [Using Pull Requests](https://docs.github.com/en/github/collaborating-with-pull-requests/proposing-changes-to-your-work-with-pull-requests/about-pull-requests)

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@
7777
<dependency>
7878
<groupId>org.junit.jupiter</groupId>
7979
<artifactId>junit-jupiter</artifactId>
80-
<version>5.12.0</version>
80+
<version>5.12.1</version>
8181
<scope>test</scope>
8282
</dependency>
8383
<dependency>

0 commit comments

Comments
 (0)