Skip to content

Commit

Permalink
Linting fixes
Browse files Browse the repository at this point in the history
Also disabling CHECKOV as this is a bit too much for now
  • Loading branch information
enolfc committed Apr 26, 2024
1 parent ae582d2 commit 70cd019
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 2 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/check-links.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: Check links

on: [push, pull_request]

permissions: read-all

jobs:
markdown-link-check:
name: Check links using markdown-link-check
Expand Down
3 changes: 3 additions & 0 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ on:
paths:
- 'deployment/**'

permissions:
pull-requests: write

jobs:
terraform:
name: 'Terraform'
Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/docker.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
---
name: Check the container can be built

permissions: read-all

on:
push:
branches:
Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,9 @@
---
name: Lint

on: [push, pull_request]
on: pull_request

permissions: read-all

jobs:
super-lint:
Expand All @@ -13,7 +15,6 @@ jobs:
- name: Checkout code
uses: actions/checkout@v4
with:
# Full git history needed to get proper list of changed files
fetch-depth: 0

# Runs the Super-Linter action
Expand All @@ -26,3 +27,4 @@ jobs:
VALIDATE_ALL_CODEBASE: false
# Fail on errors
DISABLE_ERRORS: false
VALIDATE_CHECKOV: false

0 comments on commit 70cd019

Please sign in to comment.