Skip to content

build(deps): bump sigs.k8s.io/controller-runtime from 0.14.6 to 0.17.3 in the k8s group #385

build(deps): bump sigs.k8s.io/controller-runtime from 0.14.6 to 0.17.3 in the k8s group

build(deps): bump sigs.k8s.io/controller-runtime from 0.14.6 to 0.17.3 in the k8s group #385

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out code into the Go module directory
uses: actions/checkout@v3
- name: Set up Go 1.20
uses: actions/setup-go@v4
with:
go-version: "1.20"
- name: Verify go.mod is sane
run: go mod tidy && git diff --no-patch --exit-code
- name: Install dependencies
run: go mod download
- name: Build
run: make build
- name: Test
shell: bash
run: make test