Skip to content

Bump github.com/prometheus/procfs from 0.8.0 to 0.15.0 #7

Bump github.com/prometheus/procfs from 0.8.0 to 0.15.0

Bump github.com/prometheus/procfs from 0.8.0 to 0.15.0 #7

Workflow file for this run

name: Build
on:
- pull_request
permissions:
contents: read
concurrency:
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
cancel-in-progress: true
jobs:
test:
strategy:
matrix:
go:
- "1.21"
- "1.22"
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: install Go
uses: actions/setup-go@0c52d547c9bc32b1aa3301fd7a9cb496313a4491 # v5.0.0
with:
go-version: ${{ matrix.go }}
- name: Build
run: make build
- name: Test
run: make test-unit