Skip to content

Bump k8s.io/apimachinery from 0.28.3 to 0.34.1 #34

Bump k8s.io/apimachinery from 0.28.3 to 0.34.1

Bump k8s.io/apimachinery from 0.28.3 to 0.34.1 #34

Workflow file for this run

name: build
on:
push:
branches:
- main
pull_request:
permissions:
contents: read
jobs:
lint:
name: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: golangci-lint
uses: golangci/golangci-lint-action@v8
with:
version: v2.5.0
build-bin:
name: build binaries
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: build
run: make build
build-img:
name: build images
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: build
run: make docker-build
test:
name: run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- uses: actions/setup-go@v6
with:
go-version-file: go.mod
- name: test
run: make test