Skip to content

build(deps): bump github.com/prometheus/client_golang from 1.14.0 to 1.19.0 #2

build(deps): bump github.com/prometheus/client_golang from 1.14.0 to 1.19.0

build(deps): bump github.com/prometheus/client_golang from 1.14.0 to 1.19.0 #2

Workflow file for this run

name: PR Check
on:
pull_request:
paths-ignore:
- '*.md'
- 'LICENSE.md'
jobs:
go_version:
outputs:
go_version: ${{ steps.go_version.outputs.GO_VERSION }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- name: Find Go version
id: go_version
run: |
echo "GO_VERSION=$(grep golang .tool-versions | awk '{print $2}')" >> $GITHUB_OUTPUT
test-pr:
needs:
- go_version
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: ${{ needs.go_version.outputs.go_version }}
cache-dependency-path: ./go.sum
- run: make test