Skip to content

chore(deps): bump k8s.io/client-go from 0.34.1 to 0.34.2 #107

chore(deps): bump k8s.io/client-go from 0.34.1 to 0.34.2

chore(deps): bump k8s.io/client-go from 0.34.1 to 0.34.2 #107

Workflow file for this run

name: Build && Test
on:
pull_request:
branches:
- main
paths-ignore:
- 'README.md'
- 'config/**'
jobs:
build:
name: Build && Test
runs-on: ubuntu-latest
steps:
- name: Clone the code
uses: actions/checkout@v5
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: '1.24'
- name: Build
run: |
go mod tidy
make build
- name: Test
run: |
go mod tidy
make test