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
10 changes: 10 additions & 0 deletions .github/workflows/branch-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: branch-validation

on:
pull_request:
branches:
- main

jobs:
branch-validation:
uses: nullplatform/actions-nullplatform/.github/workflows/branch-validation.yml@main
10 changes: 10 additions & 0 deletions .github/workflows/conventional-commit.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: conventional-commit

on:
pull_request:
branches:
- main

jobs:
conventional-commit:
uses: nullplatform/actions-nullplatform/.github/workflows/conventional-commit.yml@main
15 changes: 15 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
name: release

on:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release:
uses: nullplatform/actions-nullplatform/.github/workflows/release.yml@main
secrets: inherit
10 changes: 10 additions & 0 deletions .github/workflows/shellcheck.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
name: shellcheck

on:
pull_request:
branches:
- main

jobs:
shellcheck:
uses: nullplatform/actions-nullplatform/.github/workflows/shellcheck.yml@main
14 changes: 14 additions & 0 deletions .github/workflows/trivy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
name: trivy

on:
pull_request:
branches:
- main

permissions:
contents: read
security-events: write

jobs:
trivy:
uses: nullplatform/actions-nullplatform/.github/workflows/trivy-tofu-scan.yml@main
10 changes: 10 additions & 0 deletions .trivyignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
# Trivy misconfiguration suppressions for this repo (intentional, documented).

# AVD-DS-0002 — placeholder container images run as-is: the root http-echo
# placeholder and the Lambda base image (public.ecr.aws/lambda/nodejs) manage the
# runtime user themselves; a USER directive is not applicable.
AVD-DS-0002

# AVD-AWS-0031 — the placeholder ECR repo uses mutable 'latest-<arch>' tags by
# design (a mirrored placeholder image, overwritten in place).
AVD-AWS-0031
2 changes: 1 addition & 1 deletion lambda/specs/requirements/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -352,7 +352,7 @@ resource "aws_ecr_repository" "lambda_placeholder" {
image_tag_mutability = "MUTABLE"

image_scanning_configuration {
scan_on_push = false
scan_on_push = true
}

tags = local.iam_default_tags
Expand Down