Skip to content

build(deps): bump k8s.io/client-go from 0.29.4 to 0.30.0 (#256) #280

build(deps): bump k8s.io/client-go from 0.29.4 to 0.30.0 (#256)

build(deps): bump k8s.io/client-go from 0.29.4 to 0.30.0 (#256) #280

Workflow file for this run

name: ci-build
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Get dependencies
run: |
go get -v -t -d ./...
- name: Build
run: go build -v .
- name: Test
run: go test -v .