Skip to content

fix(container): update image ghcr.io/onedr0p/vector to v0.34.1 #521

fix(container): update image ghcr.io/onedr0p/vector to v0.34.1

fix(container): update image ghcr.io/onedr0p/vector to v0.34.1 #521

Workflow file for this run

---
name: "Flux Diff"
on:
pull_request:
branches: ["main"]
paths: ["kubernetes/**.yaml"]
jobs:
flux-diff:
name: Flux Diff
runs-on: ubuntu-latest
permissions:
pull-requests: write
strategy:
fail-fast: false
matrix:
path: ["kubernetes"]
resource: ["helmrelease", "kustomization"]
steps:
- name: Diff Resources
uses: allenporter/flux-local/action/diff@efbe055c6dc2a63d1102db582632d2aa03696664 # 3.1.1
id: diff
with:
sources: home-kubernetes
path: "${{ matrix.path }}"
resource: "${{ matrix.resource }}"
- name: Create comment
uses: peter-evans/create-or-update-comment@23ff15729ef2fc348714a3bb66d2f655ca9066f2 # v3
if: env.JSON_RESPONSE != ''
with:
issue-number: ${{ github.event.number }}
body: |
```diff
${{ steps.diff.outputs.diff}}
```