Skip to content

fix(deps): update module github.com/prometheus/client_golang to v1.19.1 #12113

fix(deps): update module github.com/prometheus/client_golang to v1.19.1

fix(deps): update module github.com/prometheus/client_golang to v1.19.1 #12113

Workflow file for this run

name: Dependabot-Tidier
on:
pull_request:
types: [ labeled ]
jobs:
mod_tidier:
if: ${{ contains(github.event.pull_request.labels.*.name, 'dependencies') }}
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.head_ref }}
- uses: actions/setup-go@v5
with:
go-version: "~1.22.3"
check-latest: true
cache-dependency-path: "**/go.sum"
- uses: evantorrie/mott-the-tidier@v1-beta
id: modtidy
with:
gomods: '**/go.mod'
gomodsum_only: true
- uses: stefanzweifel/git-auto-commit-action@v5
id: autocommit
with:
commit_message: Auto-fix go.sum changes in dependent modules
- name: changes
run: |
echo "Changes detected: ${{ steps.autocommit.outputs.changes_detected }}"