deps: update fedora:38 Docker digest to 6fc00f8 (#2371) #77
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: Build logcollector images | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- "debugd/filebeat/**" | |
- "debugd/logstash/**" | |
- "hack/logcollector/internal/templates/**" | |
- ".github/workflows/build-logcollector-images.yml" | |
jobs: | |
build-logcollector-debugd-images: | |
runs-on: ubuntu-22.04 | |
permissions: | |
contents: read | |
packages: write | |
steps: | |
- name: Check out repository | |
id: checkout | |
uses: actions/checkout@c85c95e3d7251135ab7dc9ce3241c5835cc595a9 # v3.5.3 | |
with: | |
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }} | |
- name: Build and upload Logstash container image | |
uses: ./.github/actions/build_micro_service | |
with: | |
name: logstash-debugd | |
dockerfile: debugd/logstash/Dockerfile | |
githubToken: ${{ secrets.GITHUB_TOKEN }} | |
- name: Build and upload Filebeat container image | |
uses: ./.github/actions/build_micro_service | |
with: | |
name: filebeat-debugd | |
dockerfile: debugd/filebeat/Dockerfile | |
githubToken: ${{ secrets.GITHUB_TOKEN }} |