Skip to content

Bump k8s.io/api from 0.26.1 to 0.29.3 #213

Bump k8s.io/api from 0.26.1 to 0.29.3

Bump k8s.io/api from 0.26.1 to 0.29.3 #213

Workflow file for this run

name: Main CI WorkFlow
on:
push:
branches:
- 'master'
- 'release-*'
tags:
- 'v*'
pull_request:
branches:
- 'master'
- 'release-*'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
name: Binary build
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Test
run: make test