Skip to content

Commit 9684c87

Browse files
Bump adrienverge/yamllint from 1.28.0 to 1.30.0 (#130)
1 parent c556c1d commit 9684c87

File tree

7 files changed

+34
-27
lines changed

7 files changed

+34
-27
lines changed

.github/pull_request_template.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,20 @@
1-
<!-- Please refer to our contributing documentation for any questions on submitting a pull request, or let us know here if you need any help -->
21
<!-- markdownlint-disable-file MD041 -->
32

43
## Pull request checklist
54

65
Please check if your PR fulfills the following requirements:
76

8-
- [ ] I have read the [CONTRIBUTING](https://github.com/fabasoad/setup-cobol-action/CONTRIBUTING.md)
7+
- [ ] I have read the [CONTRIBUTING](https://github.com/fabasoad/setup-cobol-action/blob/main/CONTRIBUTING.md)
98
doc.
109
- [ ] Tests for the changes have been added (for bug fixes / features).
1110
- [ ] Docs have been reviewed and added / updated if needed (for bug fixes / features).
12-
- [ ] Build (`yarn run build`) was run locally and any changes were pushed.
13-
- [ ] Tests (`yarn test`) has passed locally and any fixes were made for failures.
1411

1512
## Pull request type
1613

1714
<!-- Please do not submit updates to dependencies unless it fixes an issue. -->
1815

19-
<!-- Please try to limit your pull request to one type, submit multiple pull requests if needed. -->
16+
<!-- Please try to limit your pull request to one type, submit multiple pull
17+
requests if needed. -->
2018

2119
Please check the type of change your PR introduces:
2220

@@ -28,27 +26,31 @@ Please check the type of change your PR introduces:
2826
- [ ] Documentation content changes
2927
- [ ] Other (please describe):
3028

31-
## What is the current behavior?
32-
<!-- Please describe the current behavior that you are modifying, or link to a relevant issue. -->
29+
## What is the current behavior
30+
<!-- Please describe the current behavior that you are modifying, or link to a
31+
relevant issue. -->
3332

34-
## What is the new behavior?
33+
## What is the new behavior
3534
<!-- Please describe the behavior or changes that are being added by this PR. -->
3635

3736
-
3837
-
3938
-
4039

41-
## Does this introduce a breaking change?
40+
## Does this introduce a breaking change
4241

4342
- [ ] Yes
4443
- [ ] No
4544

46-
<!-- If this introduces a breaking change, please describe the impact and migration path for existing applications below. -->
45+
<!-- If this introduces a breaking change, please describe the impact and
46+
migration path for existing applications below. -->
4747

4848
## Other information
4949

50-
<!-- Any other information that is important to this PR such as screenshots of how the component looks before and after the change. -->
51-
<!-- This document was adapted from the open-source [appium/appium](https://github.com/appium/appium/blob/master/.github/PULL_REQUEST_TEMPLATE.md) repository. -->
50+
<!-- Any other information that is important to this PR such as screenshots of
51+
how the component looks before and after the change. -->
52+
<!-- This document was adapted from the open-source [appium/appium](https://github.com/appium/appium/blob/master/.github/PULL_REQUEST_TEMPLATE.md)
53+
repository. -->
5254

5355
---
5456

.github/workflows/create-release.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
---
22
name: Create release
33

4-
on:
4+
on: # yamllint disable-line rule:truthy
55
push:
66
tags:
77
- 'v*.*.*'
88

99
jobs:
10-
create_release:
10+
create-release:
1111
name: Release
1212
runs-on: ubuntu-latest
1313
steps:

.github/workflows/functional-tests-local.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
---
22
name: Functional Tests (Local)
33

4-
on: [pull_request]
4+
on: # yamllint disable-line rule:truthy
5+
pull_request:
6+
7+
defaults:
8+
run:
9+
shell: sh
510

611
jobs:
712
run-script:
@@ -22,4 +27,3 @@ jobs:
2227
run: |
2328
cobc -x ./HelloWorld.cob
2429
[ "$(./HelloWorld)" = "Hello World!" ] || exit 1;
25-
shell: sh

.github/workflows/functional-tests-remote.yml

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,15 @@
11
---
22
name: Functional Tests (Remote)
33

4-
on:
4+
on: # yamllint disable-line rule:truthy
55
push:
66
branches:
77
- 'main'
88

9+
defaults:
10+
run:
11+
shell: sh
12+
913
jobs:
1014
run-script:
1115
name: Run script
@@ -28,12 +32,9 @@ jobs:
2832
echo ' PROCEDURE DIVISION.' >> HelloWorld.cob
2933
echo ' DISPLAY "Hello World!".' >> HelloWorld.cob
3034
echo ' STOP RUN.' >> HelloWorld.cob
31-
shell: sh
3235
- name: Print file
3336
run: cat ./HelloWorld.cob
34-
shell: sh
3537
- name: Validate script
3638
run: |
3739
cobc -x ./HelloWorld.cob
3840
[ "$(./HelloWorld)" = "Hello World!" ] || exit 1;
39-
shell: sh

.github/workflows/update-license.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
name: Update license
33

4-
on:
4+
on: # yamllint disable-line rule:truthy
55
schedule:
66
- cron: '0 5 1 1 *'
77

.pre-commit-config.yaml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ repos:
1111
- id: detect-secrets
1212
stages: ["commit", "push"]
1313
- repo: https://github.com/zricethezav/gitleaks
14-
rev: v8.15.2
14+
rev: v8.16.2
1515
hooks:
1616
- id: gitleaks
1717
stages: ["commit", "push"]
1818
# Markdown
1919
- repo: https://github.com/igorshubovych/markdownlint-cli
20-
rev: v0.32.2
20+
rev: v0.33.0
2121
hooks:
22-
- id: markdownlint
22+
- id: markdownlint-fix
2323
# Shell
2424
- repo: https://github.com/shellcheck-py/shellcheck-py
2525
rev: v0.9.0.2
@@ -28,7 +28,7 @@ repos:
2828
stages: ["push"]
2929
# Yaml
3030
- repo: https://github.com/adrienverge/yamllint
31-
rev: v1.28.0
31+
rev: v1.30.0
3232
hooks:
3333
- id: yamllint
3434
# Other
@@ -45,5 +45,4 @@ repos:
4545
- id: no-commit-to-branch
4646
- id: trailing-whitespace
4747
ci:
48-
autofix_prs: true
49-
autoupdate_schedule: quarterly
48+
autofix_prs: false

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
# Setup COBOL (GnuCOBOL)
22

3+
[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
34
![GitHub release](https://img.shields.io/github/v/release/fabasoad/setup-cobol-action?include_prereleases)
45
![Functional Tests](https://github.com/fabasoad/setup-cobol-action/workflows/Functional%20Tests%20(Remote)/badge.svg)
56
[![pre-commit.ci status](https://results.pre-commit.ci/badge/github/fabasoad/setup-cobol-action/main.svg)](https://results.pre-commit.ci/latest/github/fabasoad/setup-cobol-action/main)

0 commit comments

Comments
 (0)