feat(helm): Support Helm v4 for rendering and deployment, drop Helm v2 support for rendering since helm version --client
parameter is not supported anymore in v4
#3699
Workflow file for this run
This file contains hidden or 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: PR linters, checks | |
# Triggers the workflow on push or pull request events | |
on: [push, pull_request] | |
permissions: read-all | |
concurrency: | |
group: build-${{ github.event.pull_request.number || github.ref }}-${{github.workflow}} | |
cancel-in-progress: ${{ github.ref != 'refs/heads/main' }} | |
jobs: | |
build: | |
name: PR linters, checks | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up Go | |
uses: actions/setup-go@v6 | |
with: | |
go-version: 1.25.3 | |
id: go | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@v5 | |
with: | |
fetch-depth: 0 | |
- name: Inject base sha and pr sha | |
run: | | |
GITHUB_BASE_SHA=${{ github.event.pull_request.base.sha }} | |
GITHUB_SHA=${{ github.sha }} | |
- name: Run make linters | |
run: | | |
make linters | |
- name: Run make checks | |
run: | | |
make checks |