Skip to content

Commit

Permalink
Bump github/super-linter from 5 to 6 (#48)
Browse files Browse the repository at this point in the history
* Bump github/super-linter from 5 to 6

Bumps [github/super-linter](https://github.com/github/super-linter) from 5 to 6.
- [Release notes](https://github.com/github/super-linter/releases)
- [Changelog](https://github.com/github/super-linter/blob/main/CHANGELOG.md)
- [Commits](github/super-linter@v5...v6)

---
updated-dependencies:
- dependency-name: github/super-linter
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>

* Linting fixes

Also disabling CHECKOV as this is a bit too much for now

---------

Signed-off-by: dependabot[bot] <[email protected]>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Enol Fernandez <[email protected]>
  • Loading branch information
dependabot[bot] and enolfc authored Apr 26, 2024
1 parent f565166 commit e576e02
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 3 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
8 changes: 5 additions & 3 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,16 +15,16 @@ 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
- name: Run Super-Linter on new changes
uses: github/super-linter@v5
uses: github/super-linter@v6
env:
DEFAULT_BRANCH: main
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# Only check new or edited files
VALIDATE_ALL_CODEBASE: false
# Fail on errors
DISABLE_ERRORS: false
VALIDATE_CHECKOV: false

0 comments on commit e576e02

Please sign in to comment.