Skip to content

chore(deps): Bump github.com/prometheus-operator/prometheus-operator/pkg/client from 0.92.1 to 0.93.0 #375

chore(deps): Bump github.com/prometheus-operator/prometheus-operator/pkg/client from 0.92.1 to 0.93.0

chore(deps): Bump github.com/prometheus-operator/prometheus-operator/pkg/client from 0.92.1 to 0.93.0 #375

Workflow file for this run

name: checks
on:
pull_request:
push:
branches:
- "main"
jobs:
check-golang:
runs-on: ubuntu-latest
name: Golang linter
steps:
- uses: actions/checkout@v7
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v7
with:
go-version: "${{ env.golang-version }}"
check-latest: true
- name: go.mod
run: make tidy && git diff --exit-code
- name: Run GolangCI Lint
uses: golangci/golangci-lint-action@v9.3.0
with:
version: v2.12.2
args: --timeout 10m0s
format:
runs-on: ubuntu-latest
name: Check Documentation formatting and links
steps:
- uses: actions/checkout@v7
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- name: go.mod
run: make tidy
- uses: actions/setup-go@v7
with:
go-version: "${{ env.golang-version }}"
check-latest: true
- run: make check-docs check-license
build:
runs-on: ${{ matrix.os }}
strategy:
matrix:
os:
- macos-latest
- ubuntu-latest
name: Build operator binary
steps:
- uses: actions/checkout@v7
- name: Import environment variables from file
run: cat ".github/env" >> $GITHUB_ENV
- uses: actions/setup-go@v7
with:
go-version: "${{ env.golang-version }}"
check-latest: true
- run: make poctl