Skip to content

Bump k8s.io/client-go from 0.33.1 to 0.33.4 #139

Bump k8s.io/client-go from 0.33.1 to 0.33.4

Bump k8s.io/client-go from 0.33.1 to 0.33.4 #139

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: build-test
on:
push:
branches:
- "main"
- "release-**"
pull_request:
branches:
- main
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # [email protected]
- name: Add variables to environment file
run: cat ".github/env" >> "$GITHUB_ENV"
- name: Set up Go
uses: actions/setup-go@0aaccfd150d50ccaeb58ebd88d36e91967a5f35b # [email protected]
with:
go-version: '${{ env.GOLANG_VERSION }}'
check-latest: true
- name: Run Test
run: make test
- name: Build
run: make build