chore(deps): bump dawidd6/action-send-mail from 12335b969ae3fb71bee5f… #154
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
| # SPDX-License-Identifier: MPL-2.0 | |
| name: Container Policy | |
| on: | |
| push: | |
| branches: [main, master] | |
| pull_request: | |
| # Estate guardrail: scope push to default branches (PR fires once, not | |
| # push+PR) and cancel superseded runs. Safe — read-only PR check. | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| permissions: read-all | |
| jobs: | |
| check: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 15 | |
| permissions: | |
| contents: read | |
| steps: | |
| - uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 | |
| - name: Enforce container policy | |
| run: | | |
| # Block new Dockerfiles | |
| NEW_DOCKER=$(git diff --name-only --diff-filter=A HEAD~1 2>/dev/null | grep -iE 'dockerfile' || true) | |
| if [ -n "$NEW_DOCKER" ]; then | |
| echo "❌ New Dockerfile detected. Use Containerfile instead." | |
| exit 1 | |
| fi | |
| # Check for docker command usage in scripts | |
| DOCKER_CMD=$(grep -r "docker build\|docker run\|docker push" --include="*.sh" --include="*.yml" --include="*.yaml" . 2>/dev/null | grep -v "nerdctl\|podman" | head -5 || true) | |
| if [ -n "$DOCKER_CMD" ]; then | |
| echo "⚠️ docker command found. Prefer nerdctl or podman:" | |
| echo "$DOCKER_CMD" | |
| fi | |
| echo "✅ Container policy check passed" |