Bump github.com/docker/docker from 20.10.24+incompatible to 24.0.7+incompatible #1271
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Black Duck Policy Check | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
jobs: | |
security: | |
if: github.repository == 'nutanix-cloud-native/cluster-api-provider-nutanix' | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "^1.19" | |
- name: Build Project | |
run: make build | |
- name: Run Synopsys Detect | |
uses: synopsys-sig/detect-action@v0.3.4 | |
with: | |
github-token: ${{ secrets.GITHUB_TOKEN }} | |
detect-version: 8.10.0 | |
blackduck-url: ${{ secrets.BLACKDUCK_URL }} | |
blackduck-api-token: ${{ secrets.BLACKDUCK_API_TOKEN }} |