Skip to content

Commit

Permalink
Bump adrienverge/yamllint from 1.28.0 to 1.30.0 (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
pre-commit-ci[bot] authored Apr 9, 2023
1 parent c556c1d commit 9684c87
Show file tree
Hide file tree
Showing 7 changed files with 34 additions and 27 deletions.
26 changes: 14 additions & 12 deletions .github/pull_request_template.md
Original file line number Diff line number Diff line change
@@ -1,22 +1,20 @@
<!-- Please refer to our contributing documentation for any questions on submitting a pull request, or let us know here if you need any help -->
<!-- markdownlint-disable-file MD041 -->

## Pull request checklist

Please check if your PR fulfills the following requirements:

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

## Pull request type

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

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

Please check the type of change your PR introduces:

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

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

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

-
-
-

## Does this introduce a breaking change?
## Does this introduce a breaking change

- [ ] Yes
- [ ] No

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

## Other information

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

---

Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
---
name: Create release

on:
on: # yamllint disable-line rule:truthy
push:
tags:
- 'v*.*.*'

jobs:
create_release:
create-release:
name: Release
runs-on: ubuntu-latest
steps:
Expand Down
8 changes: 6 additions & 2 deletions .github/workflows/functional-tests-local.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
---
name: Functional Tests (Local)

on: [pull_request]
on: # yamllint disable-line rule:truthy
pull_request:

defaults:
run:
shell: sh

jobs:
run-script:
Expand All @@ -22,4 +27,3 @@ jobs:
run: |
cobc -x ./HelloWorld.cob
[ "$(./HelloWorld)" = "Hello World!" ] || exit 1;
shell: sh
9 changes: 5 additions & 4 deletions .github/workflows/functional-tests-remote.yml
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
---
name: Functional Tests (Remote)

on:
on: # yamllint disable-line rule:truthy
push:
branches:
- 'main'

defaults:
run:
shell: sh

jobs:
run-script:
name: Run script
Expand All @@ -28,12 +32,9 @@ jobs:
echo ' PROCEDURE DIVISION.' >> HelloWorld.cob
echo ' DISPLAY "Hello World!".' >> HelloWorld.cob
echo ' STOP RUN.' >> HelloWorld.cob
shell: sh
- name: Print file
run: cat ./HelloWorld.cob
shell: sh
- name: Validate script
run: |
cobc -x ./HelloWorld.cob
[ "$(./HelloWorld)" = "Hello World!" ] || exit 1;
shell: sh
2 changes: 1 addition & 1 deletion .github/workflows/update-license.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
---
name: Update license

on:
on: # yamllint disable-line rule:truthy
schedule:
- cron: '0 5 1 1 *'

Expand Down
11 changes: 5 additions & 6 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ repos:
- id: detect-secrets
stages: ["commit", "push"]
- repo: https://github.com/zricethezav/gitleaks
rev: v8.15.2
rev: v8.16.2
hooks:
- id: gitleaks
stages: ["commit", "push"]
# Markdown
- repo: https://github.com/igorshubovych/markdownlint-cli
rev: v0.32.2
rev: v0.33.0
hooks:
- id: markdownlint
- id: markdownlint-fix
# Shell
- repo: https://github.com/shellcheck-py/shellcheck-py
rev: v0.9.0.2
Expand All @@ -28,7 +28,7 @@ repos:
stages: ["push"]
# Yaml
- repo: https://github.com/adrienverge/yamllint
rev: v1.28.0
rev: v1.30.0
hooks:
- id: yamllint
# Other
Expand All @@ -45,5 +45,4 @@ repos:
- id: no-commit-to-branch
- id: trailing-whitespace
ci:
autofix_prs: true
autoupdate_schedule: quarterly
autofix_prs: false
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
# Setup COBOL (GnuCOBOL)

[![Stand With Ukraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/main/badges/StandWithUkraine.svg)](https://stand-with-ukraine.pp.ua)
![GitHub release](https://img.shields.io/github/v/release/fabasoad/setup-cobol-action?include_prereleases)
![Functional Tests](https://github.com/fabasoad/setup-cobol-action/workflows/Functional%20Tests%20(Remote)/badge.svg)
[![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)
Expand Down

0 comments on commit 9684c87

Please sign in to comment.