deps: bump golang.org/x/sys from 0.43.0 to 0.44.0 (#2302) #491
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: DevContainer | |
| on: | |
| merge_group: | |
| push: | |
| branches: [main] | |
| paths: | |
| - ".devcontainer/**" | |
| - "go.mod" | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - ".devcontainer/**" | |
| - "go.mod" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| build: | |
| name: Build DevContainer | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 30 | |
| steps: | |
| - uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Build and validate devcontainer | |
| uses: devcontainers/ci@b63b30de439b47a52267f241112c5b453b673db5 # v0.3.1900000449 | |
| with: | |
| runCmd: | | |
| clang --version | |
| llvm-strip --version | |
| go version | |
| EXPECTED_GO=$(grep '^go ' go.mod | awk '{print $2}') | |
| ACTUAL_GO=$(go version | grep -oP '\d+\.\d+\.\d+') | |
| if [ "$EXPECTED_GO" != "$ACTUAL_GO" ]; then | |
| echo "::error::Go version mismatch: devcontainer has $ACTUAL_GO but go.mod requires $EXPECTED_GO" | |
| exit 1 | |
| fi | |
| kubectl version --client | |
| helm version | |
| kind version | |
| grep -rl 'go:generate.*bpf2go' pkg/plugin/ | xargs -I{} go generate {} |