Skip to content

chore(deps): bump k8s.io/client-go from 0.33.0 to 0.33.3 #459

chore(deps): bump k8s.io/client-go from 0.33.0 to 0.33.3

chore(deps): bump k8s.io/client-go from 0.33.0 to 0.33.3 #459

Workflow file for this run

name: check-mod
on:
pull_request
permissions:
contents: read
jobs:
build:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: No replaced Go module
run: |
set +e
grep 'replace github.com/vmware/go-vcloud-director' go.mod
if [ "$?" -eq 0 ]; then echo "ERROR: Found a replaced go.mod. Remove the replacement before merging"; exit 1; else exit 0; fi