fix(deps): update module github.com/prometheus/client_golang to v1.20.3 #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: dnsmon-go | |
on: [push, pull_request] | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go 1.17 | |
uses: actions/setup-go@v5 | |
with: | |
go-version: 1.17 | |
id: go | |
- name: Install dependencies | |
run: sudo apt-get -qqy install libpcap-dev | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v4 | |
- name: Download go modules | |
run: go mod download | |
- name: Verify go modules | |
run: go mod verify | |
- name: Build | |
run: go build -v . |