Skip to content

deps: bump sigs.k8s.io/controller-tools from 0.11.3 to 0.16.3 in /build/tools #278

deps: bump sigs.k8s.io/controller-tools from 0.11.3 to 0.16.3 in /build/tools

deps: bump sigs.k8s.io/controller-tools from 0.11.3 to 0.16.3 in /build/tools #278

Workflow file for this run

name: crdgen
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
crdgen119:
strategy:
matrix:
go-version: ['1.20']
os: [ubuntu-latest]
name: CRDs are Generated
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Regenerate NodeNetworkConfig CRD
run: make -C crd/nodenetworkconfig
- name: Regenerate MultitenantNetworkContainer CRD
run: make -C crd/multitenantnetworkcontainer
- name: Fail if the tree is dirty
run: test -z "$(git status --porcelain)"