Bump github.com/prometheus/client_golang from 1.20.1 to 1.20.2 #270
Workflow file for this run
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: CI | |
permissions: read-all | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
permissions: | |
id-token: write | |
contents: read | |
name: Build | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=v4.1.7 | |
- uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # tag=v27 | |
with: | |
nix_path: nixpkgs=channel:nixpkgs-unstable | |
- name: Run GoReleaser | |
run: nix develop --command goreleaser release --snapshot --clean | |
static_analysis: | |
runs-on: ubuntu-22.04 | |
name: Run static analysis and linting | |
steps: | |
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # tag=v4.1.7 | |
- uses: cachix/install-nix-action@ba0dd844c9180cbf77aa72a116d6fbc515d0e87b # tag=v27 | |
with: | |
nix_path: nixpkgs=channel:nixpkgs-unstable | |
- name: golangci-lint | |
run: nix develop --command golangci-lint run |