Bump github.com/docker/cli from 29.7.2+incompatible to 29.8.0+incompatible #6074
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: test | |
| on: | |
| push: | |
| branches: | |
| - '**' | |
| pull_request: | |
| paths: | |
| - '**' | |
| - '!doc/**' | |
| merge_group: | |
| jobs: | |
| e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v7 | |
| - uses: actions/setup-go@v7 | |
| with: | |
| go-version-file: 'go.mod' | |
| - name: Install podman | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get -y install podman | |
| podman version | |
| - name: Install kind | |
| run: go install sigs.k8s.io/kind@$(go list -m -f '{{.Version}}' sigs.k8s.io/kind) | |
| - name: Create kind cluster and setup local docker registry | |
| run: | | |
| "${GITHUB_WORKSPACE}/scripts/start_registry.sh" kind-registry | |
| export DOCKER_REGISTRY_HOST=localhost:443 | |
| - name: Run e2e tests | |
| run: | | |
| KUBECONFIG="$HOME/.kube/config" DOCKER_REGISTRY_HOST=localhost:443 make build e2e CLUSTER=kind |