Skip to content

chore(deps): bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5 #15016

chore(deps): bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5

chore(deps): bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5 #15016

Workflow file for this run

# Ensure that generated code is up-to-date.
name: Generate protobuf code
on:
workflow_dispatch:
pull_request:
paths:
- "proto/**"
- "**/**.proto"
- "**/**.pb.go"
- "**/**.sum"
- "**/client/**.go"
- "scripts/ci/**"
- "Makefile"
- "Dockerfile"
- ".github/workflows/check-generated.yml"
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
check-proto:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.pull_request.head.ref }}
- name: "Check protobuf generated code"
run: |
chmod +x ./scripts/protocgen.sh
make proto-all
make run-querygen
- name: Commit changes
run: |
git config user.name github-actions
git config user.email github-actions@github.com
git add *.go
git add *.proto
git commit -m "Generated protofile changes" || echo "No changes to commit"
git push