Skip to content

Merge pull request #138 from kube-logging/image-compat #147

Merge pull request #138 from kube-logging/image-compat

Merge pull request #138 from kube-logging/image-compat #147

Workflow file for this run

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
- v1.16-4.8
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'