Skip to content

chore: bump github.com/prometheus/client_golang from 1.20.3 to 1.20.4 #5064

chore: bump github.com/prometheus/client_golang from 1.20.3 to 1.20.4

chore: bump github.com/prometheus/client_golang from 1.20.3 to 1.20.4 #5064

Workflow file for this run

name: Helm Lint and Test Charts
on: pull_request
jobs:
lint-helm-chart:
name: Lint Helm Chart
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Helm
uses: azure/setup-helm@v4
with:
version: v3.11.1
- uses: actions/setup-python@v5
with:
python-version: '3.9'
check-latest: true
- name: Set up chart-testing
uses: helm/[email protected]
- name: Get changed files in the docs folder
id: changed-files-specific
uses: tj-actions/changed-files@v45
with:
files: ./cmd/relayproxy/helm-charts/**
- name: Run chart-testing (lint)
working-directory: ./cmd/relayproxy/helm-charts/relay-proxy/
run: ct lint --chart-dirs . --charts .
- name: Create kind cluster
uses: helm/[email protected]
if: steps.changed-files-specific.outputs.any_changed == 'true'
- name: Run chart-testing (install)
working-directory: ./cmd/relayproxy/helm-charts/relay-proxy/
run: ct install --chart-dirs . --charts .
if: steps.changed-files-specific.outputs.any_changed == 'true'