chore: stop forwarding the deprecated GITLEAKS_LICENSE secret (#150) #175
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: CI | |
| on: | |
| push: | |
| branches: | |
| - master | |
| - main | |
| pull_request: | |
| permissions: {} | |
| jobs: | |
| # Gold-standard container CI via the org meta-reusable: Dockerfile lint | |
| # (+ shellcheck of setup/), YAML/Markdown/compose lint, validation-only | |
| # image build with Trivy, secret scanning and dependency review — one | |
| # call site. Push + cosign stay in docker-publish.yml. | |
| docker-ci: | |
| uses: netresearch/.github/.github/workflows/docker-image-ci.yml@main | |
| permissions: | |
| contents: read | |
| packages: write | |
| security-events: write | |
| id-token: write | |
| attestations: write | |
| actions: read | |
| pull-requests: write | |
| with: | |
| image-name: docker-validator-w3c | |
| dockerfile: ./Dockerfile | |
| lint-container: true | |
| shell-scandirs: setup | |
| lint-yaml: true | |
| lint-markdown: true | |
| lint-compose: true | |
| compose-files: docker-compose.yml | |
| enable-gitleaks: true | |
| enable-codeql: false | |
| enable-smoke-test: false |