Skip to content

chore(deps): bump helm.sh/helm/v3 from 3.20.2 to 3.21.0 #54

chore(deps): bump helm.sh/helm/v3 from 3.20.2 to 3.21.0

chore(deps): bump helm.sh/helm/v3 from 3.20.2 to 3.21.0 #54

Workflow file for this run

name: Go Test
on:
pull_request:
paths:
- .github/workflows/go-test.yml
- pkg/**
- cmd/**
- docs/**
- generated/**
- go.mod
- go.sum
- main.go
jobs:
linting:
name: Go lint
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # actions/checkout@v6
- name: Set up Go 1.x
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # actions/setup-go@v5
with:
go-version: stable
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # golangci/golangci-lint-action@v9.2.0
with:
args: --timeout=30m
security:
name: Go Security
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # actions/checkout@v6
- name: Set up Go 1.x
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # actions/setup-go@v5
with:
go-version: stable
- name: Run Gosec Security Scanner
uses: securego/gosec@553d8a50502028375f270b69e959dc11c7952608 # securego/gosec@master
with:
args: ./...
- name: Install Govulncheck Security Scanner
run: go get golang.org/x/vuln/cmd/govulncheck && go install golang.org/x/vuln/cmd/govulncheck
- name: Run Govulncheck Security Scanner
run: govulncheck ./...
test:
name: Go test
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # actions/checkout@v6
- name: Set up Go 1.x
uses: actions/setup-go@40f1582b2485089dde7abd97c1529aa768e1baff # actions/setup-go@v5
with:
go-version: stable
- name: Install
run: go mod download -x
- name: Test
run: go test -v ./...