Skip to content

chore(deps)(deps): bump github.com/vmware/go-vcloud-director/v3 from 3.0.1-alpha.2 to 3.0.1-alpha.4 #533

chore(deps)(deps): bump github.com/vmware/go-vcloud-director/v3 from 3.0.1-alpha.2 to 3.0.1-alpha.4

chore(deps)(deps): bump github.com/vmware/go-vcloud-director/v3 from 3.0.1-alpha.2 to 3.0.1-alpha.4 #533

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.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