Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,3 +6,9 @@ updates:
directory: "/"
schedule:
interval: "weekly"
groups:
github-actions:
patterns:
- "*"
cooldown:
default-days: 7
9 changes: 9 additions & 0 deletions .github/linters/.markdown-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
{
"default": true,
"MD003": false,
"MD013": false,
"MD033": false,
"MD059": false,
"MD060": false,
"MD034": false
}
8 changes: 5 additions & 3 deletions .github/workflows/helm-lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Helm lint
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#

permissions: read-all
permissions: read-all # zizmor: ignore[excessive-permissions]

on: [push, pull_request]

Expand All @@ -17,10 +17,12 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false

- name: Setup helm
uses: azure/setup-helm@v5
uses: azure/setup-helm@dda3372f752e03dde6b3237bc9431cdc2f7a02a2 # v5.0.0
with:
version: 'v3.14.0'

Expand Down
6 changes: 4 additions & 2 deletions .github/workflows/helm-unittest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ name: Helm Unit Test
# https://help.github.com/en/articles/workflow-syntax-for-github-actions
#

permissions: read-all
permissions: read-all # zizmor: ignore[excessive-permissions]

on: [push, pull_request]

Expand All @@ -18,7 +18,9 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false

- name: Run make helmlint
run: |
Expand Down
17 changes: 14 additions & 3 deletions .github/workflows/superlinter.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Super linter

on: [push, pull_request]
permissions: read-all
permissions: read-all # zizmor: ignore[excessive-permissions]

jobs:
build:
Expand All @@ -13,16 +13,17 @@ jobs:

steps:
- name: Checkout Code
uses: actions/checkout@v6
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
# Full git history is needed to get a proper list of changed files within `super-linter`
fetch-depth: 0

################################
# Run Linter against code base #
################################
- name: Lint Code Base
uses: super-linter/super-linter/slim@v7
uses: super-linter/super-linter/slim@61abc07d755095a68f4987d1c2c3d1d64408f1f9 # v8.5.0
env:
VALIDATE_ALL_CODEBASE: true
DEFAULT_BRANCH: main
Expand All @@ -34,3 +35,13 @@ jobs:
VALIDATE_MARKDOWN_PRETTIER: false
VALIDATE_YAML: false
VALIDATE_YAML_PRETTIER: false
VALIDATE_BIOME_FORMAT: false
VALIDATE_BIOME_LINT: false
VALIDATE_NATURAL_LANGUAGE: false
VALIDATE_SPELL_CODESPELL: false
VALIDATE_PYTHON_BLACK: false
VALIDATE_PYTHON_PYINK: false
VALIDATE_PYTHON_PYLINT: false
VALIDATE_PYTHON_RUFF_FORMAT: false
VALIDATE_SHELL_SHFMT: false
VALIDATE_TRIVY: false
10 changes: 6 additions & 4 deletions .github/workflows/update-helm-repo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,14 +17,16 @@ on:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'

permissions: read-all

jobs:
helmlint:
uses: validatedpatterns/helm-charts/.github/workflows/helmlint.yml@workflow-stable
uses: validatedpatterns/helm-charts/.github/workflows/helmlint.yml@workflow-stable # zizmor: ignore[unpinned-uses]
permissions:
contents: read

update-helm-repo:
needs: [helmlint]
uses: validatedpatterns/helm-charts/.github/workflows/update-helm-repo.yml@workflow-stable
permissions: read-all
secrets: inherit
uses: validatedpatterns/helm-charts/.github/workflows/update-helm-repo.yml@workflow-stable # zizmor: ignore[unpinned-uses]
permissions: read-all # zizmor: ignore[excessive-permissions]
secrets: inherit # zizmor: ignore[secrets-inherit]
12 changes: 11 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,16 @@ super-linter: ## Runs super linter locally
-e VALIDATE_MARKDOWN_PRETTIER=false \
-e VALIDATE_YAML_PRETTIER=false \
-e VALIDATE_YAML=false \
-e VALIDATE_BIOME_FORMAT=false \
-e VALIDATE_BIOME_LINT=false \
-e VALIDATE_NATURAL_LANGUAGE=false \
-e VALIDATE_SPELL_CODESPELL=false \
-e VALIDATE_PYTHON_BLACK=false \
-e VALIDATE_PYTHON_PYINK=false \
-e VALIDATE_PYTHON_PYLINT=false \
-e VALIDATE_PYTHON_RUFF_FORMAT=false \
-e VALIDATE_SHELL_SHFMT=false \
-e VALIDATE_TRIVY=false \
-v $(PWD):/tmp/lint:rw,z \
-w /tmp/lint \
ghcr.io/super-linter/super-linter:slim-v7
ghcr.io/super-linter/super-linter:slim-v8