chore(deps): bump go.opentelemetry.io/otel/metric from 1.27.0 to 1.32.0 #338
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: Helm | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
types: | |
- opened | |
- synchronize | |
- reopened | |
- ready_for_review | |
paths-ignore: | |
- docs/** | |
# Enable manual trigger for easier debugging | |
workflow_dispatch: | |
permissions: | |
contents: read | |
pull-requests: write | |
jobs: | |
test: | |
# HACK: this is split out, since running k3s in dagger requires cgroupsv2 | |
# runs-on: "${{ github.repository == 'dagger/dagger' && 'dagger-g2-v0-14-0-4c' || 'ubuntu-latest' }}" | |
runs-on: "ubuntu-latest" | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: "helm lint" | |
uses: ./.github/actions/call | |
with: | |
function: "helm lint" | |
- name: "helm test" | |
uses: ./.github/actions/call | |
with: | |
function: "helm test" | |
- name: "helm test publish" | |
uses: ./.github/actions/call | |
with: | |
function: "helm publish --dry-run=true --tag=main" |