Skip to content

Bump helm.sh/helm/v3 from 3.18.0 to 3.18.3 #129

Bump helm.sh/helm/v3 from 3.18.0 to 3.18.3

Bump helm.sh/helm/v3 from 3.18.0 to 3.18.3 #129

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: build-test
on:
push:
branches:
- "main"
- "release-**"
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # [email protected]
- name: Add variables to environment file
run: cat ".github/env" >> "$GITHUB_ENV"
- name: Set up Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # [email protected]
with:
go-version: '${{ env.GOLANG_VERSION }}'
check-latest: true
- name: Run Test
run: make test
- name: Build
run: make build