7a0da7932b
Backwards Compatibility / Verify Encryption Constants (push) Waiting to run
Backwards Compatibility / PyPI Version Compatibility (push) Waiting to run
Backwards Compatibility / Database Migration Tests (push) Waiting to run
CodeQL Advanced / Analyze (javascript-typescript) (push) Waiting to run
CodeQL Advanced / Analyze (python) (push) Waiting to run
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-form] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-metrics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [research-workflow] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [settings-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [history-news] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [library] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [link-analytics] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [mobile] (push) Blocked by required conditions
Docker Tests (Consolidated) / detect-changes (push) Waiting to run
Docker Tests (Consolidated) / Build Test Image (push) Waiting to run
Docker Tests (Consolidated) / All Pytest Tests + Coverage (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [accessibility] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [api-crud] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-login] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-pages] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [auth-register] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-core] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [chat-lifecycle] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) [error-benchmark] (push) Blocked by required conditions
Docker Tests (Consolidated) / UI Tests (Puppeteer) (push) Blocked by required conditions
Docker Tests (Consolidated) / Accessibility Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Unit Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / LLM Example Tests (push) Blocked by required conditions
Docker Tests (Consolidated) / Production Image Smoke Test (push) Blocked by required conditions
Docker Tests (Consolidated) / Infrastructure Tests (push) Blocked by required conditions
OSSF Scorecard / OSSF Security Scorecard Analysis (push) Waiting to run
OSV-Scanner (Scheduled) / scan-scheduled (push) Failing after 0s
Create Release / test-gate (push) Has been cancelled
Create Release / release-gate (push) Has been cancelled
Create Release / ci-gate (push) Has been cancelled
Create Release / version-check (push) Has been cancelled
Create Release / e2e-test-gate (push) Has been cancelled
Create Release / responsive-test-gate (push) Has been cancelled
Create Release / compat-test-gate (push) Has been cancelled
Create Release / compose-integration-gate (push) Has been cancelled
Create Release / vulture-gate (push) Has been cancelled
Create Release / build (push) Has been cancelled
Create Release / provenance (push) Has been cancelled
Create Release / prerelease-docker (push) Has been cancelled
Create Release / publish-docker (push) Has been cancelled
Create Release / create-release (push) Has been cancelled
Create Release / cleanup-changelog (push) Has been cancelled
Create Release / trigger-pypi (push) Has been cancelled
Create Release / monitor-pypi (push) Has been cancelled
Create Release / Clean up orphan prerelease tags and signatures (push) Has been cancelled
112 lines
3.8 KiB
YAML
112 lines
3.8 KiB
YAML
name: Hadolint Dockerfile Linting
|
|
|
|
on:
|
|
pull_request:
|
|
paths:
|
|
- 'Dockerfile'
|
|
- '.hadolint.yaml'
|
|
workflow_dispatch:
|
|
workflow_call: # Called by release-gate.yml
|
|
schedule:
|
|
# Run weekly on Tuesday at 9 AM UTC
|
|
- cron: '0 9 * * 2'
|
|
|
|
# No concurrency group — intentionally omitted.
|
|
# This workflow triggers on both pull_request and workflow_call (from
|
|
# ci-gate.yml / release-gate.yml). A shared concurrency key would cause
|
|
# direct PR runs and workflow_call runs to cancel each other mid-flight.
|
|
# See #3554 (reverted in #3599) for context.
|
|
|
|
permissions: {} # Minimal top-level for OSSF Scorecard Token-Permissions
|
|
|
|
jobs:
|
|
hadolint:
|
|
name: Hadolint Dockerfile Analysis
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
security-events: write
|
|
|
|
steps:
|
|
- name: Harden the runner (Audit all outbound calls)
|
|
uses: step-security/harden-runner@9af89fc71515a100421586dfdb3dc9c984fbf411 # v2.19.4
|
|
with:
|
|
egress-policy: audit
|
|
|
|
- name: Checkout repository
|
|
uses: actions/checkout@9c091bb21b7c1c1d1991bb908d89e4e9dddfe3e0 # v7.0.0
|
|
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Run Hadolint on Dockerfile
|
|
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
|
|
with:
|
|
dockerfile: Dockerfile
|
|
format: sarif
|
|
output-file: hadolint.sarif
|
|
no-fail: false
|
|
verbose: true
|
|
|
|
- name: Upload Hadolint results to GitHub Security
|
|
uses: github/codeql-action/upload-sarif@54f647b7e1bb85c95cddabcd46b0c578ec92bc1a # v4.36.3
|
|
if: always()
|
|
with:
|
|
sarif_file: hadolint.sarif
|
|
category: hadolint
|
|
|
|
- name: Upload Hadolint results as artifact
|
|
uses: actions/upload-artifact@043fb46d1a93c77aae656e7c1c64a875d1fc6a0a # v7.0.1
|
|
if: always()
|
|
with:
|
|
name: hadolint-results
|
|
path: hadolint.sarif
|
|
retention-days: 7 # Reduced for security
|
|
|
|
- name: Run Hadolint with detailed output
|
|
uses: hadolint/hadolint-action@2332a7b74a6de0dda2e2221d575162eba76ba5e5 # v3.3.0
|
|
if: always()
|
|
with:
|
|
dockerfile: Dockerfile
|
|
format: tty
|
|
no-fail: false
|
|
continue-on-error: false
|
|
|
|
- name: Display Hadolint summary
|
|
if: always()
|
|
run: |
|
|
{
|
|
echo "## Hadolint Dockerfile Analysis Summary"
|
|
echo ""
|
|
echo "✅ Hadolint analysis completed"
|
|
echo ""
|
|
echo "### What is Hadolint?"
|
|
echo "Hadolint is a Dockerfile linter that checks for best practices and common mistakes:"
|
|
echo ""
|
|
echo "#### Security Checks"
|
|
echo "- 🔒 Running as root user"
|
|
echo "- 🔑 Using latest tag"
|
|
echo "- 📦 Missing version pinning"
|
|
echo "- ⚠️ Exposed secrets in build args"
|
|
echo ""
|
|
echo "#### Best Practices"
|
|
echo "- 🎯 Layer optimization"
|
|
echo "- 🗑️ Cleaning package manager cache"
|
|
echo "- 📝 Using COPY instead of ADD"
|
|
echo "- 🔧 Proper WORKDIR usage"
|
|
echo "- 💾 Efficient layer caching"
|
|
echo ""
|
|
echo "#### Build Efficiency"
|
|
echo "- 🚀 Multi-stage build opportunities"
|
|
echo "- 📦 Unnecessary packages"
|
|
echo "- 🔄 Combining RUN commands"
|
|
echo ""
|
|
echo "📊 **Results:**"
|
|
echo "- Detailed results uploaded to GitHub Security tab"
|
|
echo "- SARIF file available in artifacts"
|
|
echo ""
|
|
echo "🔗 **Links:**"
|
|
echo "- [Security Tab](https://github.com/${{ github.repository }}/security/code-scanning)"
|
|
echo "- [Hadolint Rules](https://github.com/hadolint/hadolint#rules)"
|
|
} >> "$GITHUB_STEP_SUMMARY"
|