Skip to content

Bump k8s.io golang dependencies to v0.37.0 #659

Bump k8s.io golang dependencies to v0.37.0

Bump k8s.io golang dependencies to v0.37.0 #659

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@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1
- 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