Skip to content

Bump github.com/prometheus/prometheus from 0.52.2-0.20240606174736-edd558884b24 to 0.53.0-rc.1 #7946

Bump github.com/prometheus/prometheus from 0.52.2-0.20240606174736-edd558884b24 to 0.53.0-rc.1

Bump github.com/prometheus/prometheus from 0.52.2-0.20240606174736-edd558884b24 to 0.53.0-rc.1 #7946

Workflow file for this run

name: mixin
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Generate
run: make examples
- name: Check
run: make check-examples
lint:
runs-on: ubuntu-latest
name: Linters (Static Analysis) for Jsonnet (mixin)
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version: 1.21.x
- name: Format
run: |
make jsonnet-format
git diff --exit-code
- name: Linting
run: make jsonnet-lint