build(deps): bump k8s.io/apimachinery from 0.28.3 to 0.32.0 #625
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pull request | |
on: | |
pull_request: | |
paths: | |
- '.github/workflows/**' | |
- 'Makefile' | |
- 'go.mod' | |
- 'go.sum' | |
- 'cmd/**' | |
- 'pkg/**' | |
- '!docs/**' | |
- '!crds/**' | |
jobs: | |
build-deploy: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Golang | |
uses: actions/setup-go@v3 | |
with: | |
go-version: '1.23.1' | |
- name: Test | |
run: make test | |
- name: Build docker images | |
run: make build |