Skip to content

build(deps): bump k8s.io/client-go from 0.30.1 to 0.30.2 #227

build(deps): bump k8s.io/client-go from 0.30.1 to 0.30.2

build(deps): bump k8s.io/client-go from 0.30.1 to 0.30.2 #227

Workflow file for this run

name: golangci-lint
on:
push:
tags:
- v*
branches:
- master
- main
pull_request:
permissions:
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
# pull-requests: read
jobs:
golangci:
name: Test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: "go.mod"
- name: Install dependencies
run: go get .
- name: Vet
run: go vet ./...
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Test
run: go test -race -cover ./...