Skip to content

chore(deps): update docker.io/jaegertracing/all-in-one docker tag to v1.58.1 #12699

chore(deps): update docker.io/jaegertracing/all-in-one docker tag to v1.58.1

chore(deps): update docker.io/jaegertracing/all-in-one docker tag to v1.58.1 #12699

Workflow file for this run

name: proto-gen
on:
pull_request:
merge_group:
branches:
- main
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
jobs:
skip-check:
name: Skip check
continue-on-error: true
runs-on: ubuntu-latest
timeout-minutes: 10
outputs:
should_skip: ${{ steps.skip-check.outputs.should_skip }}
permissions:
actions: write
contents: read
steps:
- id: skip-check
uses: fkirc/skip-duplicate-actions@f75f66ce1886f00957d99748a42c724f4330bdcf # v5.3.1
with:
do_not_skip: '["schedule", "workflow_dispatch"]'
paths: |-
[
".github/workflows/proto-gen.yaml",
".go-version",
"buf.gen.yaml",
"buf.work.yaml",
"proto/**"
]
skip_after_successful_duplicate: false
build:
name: Proto Generate
needs: skip-check
if: ${{ needs.skip-check.outputs.should_skip != 'true' }}
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: bufbuild/buf-setup-action@480a0ee8a588045b52a847b48138c6f377a89519 # v1.31.0
- name: Generate
run:
make proto/generate && git diff --exit-code ':!ui/packages/app/web/public/keep.go'