azapi_data_plane_resource
: support replace_triggers_external_values
field
#464
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: Vendor Dependencies Check | |
on: | |
pull_request: | |
types: ['opened', 'synchronize'] | |
paths: | |
- '**.go' | |
- 'vendor/**' | |
- '.github/workflows/**' | |
jobs: | |
depscheck: | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: true | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-go@v2 | |
with: | |
go-version: '1.21' | |
- run: chmod -R +x ./scripts | |
- run: bash scripts/gogetcookie.sh | |
- run: make tools | |
- run: make depscheck |