Skip to content

Update module github.com/prometheus/client_golang to v1.20.0 #1

Update module github.com/prometheus/client_golang to v1.20.0

Update module github.com/prometheus/client_golang to v1.20.0 #1

name: renovate-post-update
on:
push:
branches:
- renovate/*
jobs:
post-update:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
# Some dependency updates might require updating go.work.sum.
# Automatically run `make tidy` on renovate branches as long as renovate doesn't know how to handle go workspaces.
- run: make tidy
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: make tidy
# Some dependency updates might require re-running code generation.
# Run `make generate` and commit all changes if any.
- run: make generate
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: make generate