Skip to content

Bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5 #2010

Bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5

Bump github.com/prometheus/client_golang from 1.20.4 to 1.20.5 #2010

Workflow file for this run

---
name: Lint
on:
push:
branches:
- master
pull_request:
jobs:
lint:
name: Lint
runs-on: ubuntu-22.04
strategy:
matrix:
go: ["oldstable", "stable"]
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Install dependencies
run: sudo apt update && sudo apt -y install build-essential libvips-dev
# This will install the staticcheck version as described in the go.mod file
- name: Install linter
run: go install honnef.co/go/tools/cmd/staticcheck
- name: Lint
run: staticcheck ./...