Merge pull request #151 from kube-logging/sec-up #155
This file contains 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: Artifacts | |
on: | |
push: | |
branches: | |
- main | |
permissions: | |
packages: write | |
security-events: write | |
jobs: | |
container-images: | |
name: Container images | |
runs-on: ubuntu-latest | |
strategy: | |
# Some older image builds may fail | |
fail-fast: false | |
matrix: | |
fluentd: | |
- v1.16-4.8 | |
- v1.16-4.9 | |
- v1.16-4.10 | |
image-type: | |
- base | |
- filters | |
- full | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Gather metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
ghcr.io/${{ github.repository_owner }}/fluentd | |
flavor: | | |
latest = false | |
tags: | | |
type=raw,value=${{ matrix.fluentd }}-${{ matrix.image-type }} | |
type=raw,value=${{ matrix.fluentd }}-${{ matrix.image-type }}-build.${{ github.run_number }} | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
with: | |
platforms: all | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ github.token }} | |
if: github.event_name == 'push' | |
- name: Build and push (${{ matrix.image-type }}) | |
uses: docker/build-push-action@v5 | |
with: | |
context: ${{ matrix.fluentd }} | |
platforms: linux/amd64,linux/arm64 | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
push: ${{ github.event_name == 'push' }} | |
tags: | | |
${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
target: ${{ matrix.image-type }} | |
- name: Run Trivy vulnerability scanner | |
uses: aquasecurity/[email protected] | |
with: | |
image-ref: "ghcr.io/${{ github.repository_owner }}/fluentd:${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }}" | |
format: "sarif" | |
output: "trivy-results.sarif" | |
if: github.event_name == 'push' | |
- name: Upload Trivy scan results to GitHub Security tab | |
uses: github/codeql-action/upload-sarif@v2 | |
with: | |
sarif_file: "trivy-results.sarif" | |
if: github.event_name == 'push' |