Bump helm.sh/helm/v3 from 3.16.3 to 3.16.4 #468
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: Test Incoming Changes | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
workflow_dispatch: | |
permissions: | |
contents: read | |
jobs: | |
basic-check: | |
name: Build, Lint, Vet | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Set up Go 1.23 | |
uses: actions/setup-go@3041bf56c941b39c61721a86cd11f3bb1338122a # v5.2.0 | |
with: | |
go-version: 1.23.4 | |
- name: Disable default go problem matcher | |
run: echo "::remove-matcher owner=go::" | |
- name: Check out code into the Go module directory | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ github.sha }} | |
# TODO: golangci-lint team recommends using a GitHub Action to perform golangci-lint responsibilities. However | |
# there does not appear to be a way to honor our existing .golangci.yml. For now, mimic developer behavior. | |
- name: Install golangci-lint | |
run: make install-lint | |
- name: make build-oct | |
run: make build-oct | |
- name: make lint | |
run: make lint | |
- name: make vet | |
run: make vet | |
- name: Run endpoint verification script | |
run: | | |
./scripts/curl-endpoints.sh |