Skip to content

Bump k8s.io/client-go from 0.28.3 to 0.29.1 #930

Bump k8s.io/client-go from 0.28.3 to 0.29.1

Bump k8s.io/client-go from 0.28.3 to 0.29.1 #930

Workflow file for this run

name: Build on Push
on:
push:
paths-ignore:
- docs/**
- README.md
pull_request:
branches:
- main
paths-ignore:
- docs/**
- README.md
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
deployments: read
packages: none
env:
GO111MODULE: on
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version-file: "go.mod"
cache: false
id: go
- name: Build
run: make
- name: Test
run: make test
- name: Build (linux)
env:
GOOS: linux
GOARCH: amd64
run: make
- name: Build (linux/arm64)
env:
GOOS: linux
GOARCH: arm64
run: make
- name: Build (linux/armv7)
env:
GOOS: linux
GOARCH: arm
GOARM: "7"
run: make
- name: Build (darwin)
env:
GOOS: darwin
GOARCH: amd64
run: make
- name: Build (darwin/arm)
env:
GOOS: darwin
GOARCH: arm64
run: make
- name: Build (windows)
env:
GOOS: windows
GOARCH: amd64
run: make
- name: Build (windows/arm)
env:
GOOS: windows
GOARCH: arm64
run: make
- name: Snap Build
uses: snapcore/action-build@v1
id: snapbuild
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v3