Skip to content

Commit 04e88f9

Browse files
Merge branch 'main' into bld_6874_github_workflow
2 parents 31a29ea + 68ce009 commit 04e88f9

File tree

5 files changed

+6
-6
lines changed

5 files changed

+6
-6
lines changed

.github/workflows/common_ccdc_status_checks.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
# To make changes persistent, please mark this repository with update_status_check: false
66
# or make your changes in the github-repository-management/status_check.yml file
77
name: Common CCDC PR Checks
8-
on: [pull_request] # yamllint disable-line rule:truthy
8+
on: [pull_request] # yamllint disable-line rule:truthy
99
jobs:
1010
ccdc-commit-hooks-on-pull-request-check:
1111
runs-on: ubuntu-latest
@@ -16,7 +16,7 @@ jobs:
1616
fetch-depth: 0
1717
- uses: actions/setup-python@v5
1818
with:
19-
python-version: "3.7"
19+
python-version: "3.11"
2020
- name: Get the commit message
2121
run: |
2222
echo 'commit_message<<EOF' >> $GITHUB_ENV

.github/workflows/lint-dockerfiles.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Run hadolint
3737
uses: reviewdog/action-hadolint@v1
3838
with:
39-
fail_on_error: false
39+
fail_level: none
4040
filter_mode: diff_context
4141
hadolint_flags: ${{ steps.file-changes.outputs.changed-files }}
4242
level: error

.github/workflows/lint-markdown.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ jobs:
3636
- name: Run markdownlint
3737
uses: reviewdog/action-markdownlint@v0
3838
with:
39-
fail_on_error: false
39+
fail_level: none
4040
filter_mode: diff_context
4141
level: error
4242
markdownlint_flags: ${{ steps.file-changes.outputs.changed-files }}

.github/workflows/lint-python.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ jobs:
4444
- name: Lint Python
4545
uses: reviewdog/action-flake8@v3
4646
with:
47-
fail_on_error: false
47+
fail_level: none
4848
filter_mode: added
4949
level: error
5050
flake8_args: ${{ steps.file-changes.outputs.changed-files }}

.github/workflows/lint-yaml.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ jobs:
3737
- name: Run yamllint
3838
uses: reviewdog/action-yamllint@v1
3939
with:
40-
fail_on_error: false
40+
fail_level: none
4141
filter_mode: diff_context
4242
level: error
4343
yamllint_flags: ${{ steps.file-changes.outputs.changed-files }}

0 commit comments

Comments
 (0)