Skip to content

chore(deps): update dependencies in release/v1.4 #15328

chore(deps): update dependencies in release/v1.4

chore(deps): update dependencies in release/v1.4 #15328

Workflow file for this run

name: crdgen
on:
workflow_dispatch:
pull_request:
types:
- opened
- reopened
- synchronize
- ready_for_review
jobs:
crdgen119:
name: CRDs are Generated
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- 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)"