Skip to content

Commit c94aa8b

Browse files
author
John Dutchover
committed
resolve linter findings
1 parent a71046e commit c94aa8b

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

.checkov.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
---
12
quiet: true
23
skip-check:
34
- CKV_DOCKER_3

.github/workflows/mega-linter.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ jobs:
3232
steps:
3333
# Git Checkout
3434
- name: Checkout Code
35-
uses: actions/checkout@v3
35+
uses: actions/checkout@v4
3636
with:
3737
token: ${{ secrets.PAT || secrets.GITHUB_TOKEN }}
3838

@@ -74,7 +74,7 @@ jobs:
7474

7575
# Upload MegaLinter artifacts
7676
- name: Archive production artifacts
77-
uses: actions/upload-artifact@v3
77+
uses: actions/upload-artifact@v4
7878
if: ${{ success() }} || ${{ failure() }}
7979
with:
8080
name: MegaLinter reports

.gitlab-ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,9 +29,9 @@ install_dependencies:
2929
stage: install
3030
script:
3131
- source .venv/bin/activate
32-
- python -m pip install -r app/requirements/requirements-dev.txt
33-
- python -m pip install -r app/requirements/requirements.txt
34-
- python -m pip install pre-commit
32+
- python -m pip install -r app/requirements/requirements-dev.txt
33+
- python -m pip install -r app/requirements/requirements.txt
34+
- python -m pip install pre-commit
3535
rules:
3636
- changes:
3737
- Makefile

0 commit comments

Comments
 (0)