Revert "Update Envoy image version to v1.29.12.2 (#799)" (#800) #1031
This file contains hidden or 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: build | |
| on: | |
| push: | |
| branches: | |
| - master | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| name: build | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Set up Go 1.20 | |
| uses: actions/setup-go@v3 | |
| with: | |
| go-version: '1.20.*' | |
| id: go | |
| - name: checkout code | |
| uses: actions/checkout@v2 | |
| - name: make controller | |
| run: make controller | |
| - name: check controller binary | |
| run: ./bin/controller -h || true |