Bump sigs.k8s.io/gateway-api from 1.5.1 to 1.6.1 #1610
Workflow file for this run
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 | |
| - 'release-*' | |
| pull_request: | |
| branches: | |
| - master | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26.3" | |
| - name: Run build | |
| run: make build | |
| - name: golangci-lint | |
| uses: golangci/golangci-lint-action@v9 | |
| with: | |
| version: latest | |
| args: --verbose | |
| - name: Run unit tests | |
| run: make test | |
| integration: | |
| if: github.ref_name != 'master' | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| haproxy-version: | |
| - "2.6" # minimum supported | |
| - "3.0" # embedded version | |
| - "3.3" # latest | |
| envtest-version: | |
| - "1.23.5" # oldest supported version | |
| - "1.35.0" # latest Kubernetes version | |
| fail-fast: false | |
| steps: | |
| - name: Install dependencies | |
| run: sudo apt-get install -y lua-json | |
| - name: Install HAProxy ${{ matrix.haproxy-version }} | |
| uses: timwolla/action-install-haproxy@main | |
| id: install-haproxy | |
| with: | |
| branch: ${{ matrix.haproxy-version }} | |
| use_openssl: yes | |
| use_lua: yes | |
| - uses: actions/checkout@v6 | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version: "1.26.3" | |
| - name: Run integration tests on Kubernetes ${{ matrix.envtest-version }} | |
| run: HAPROXY_INGRESS_ENVTEST=${{ matrix.envtest-version }} make test-integration | |
| image: | |
| if: github.ref_name == 'master' || startsWith(github.ref_name, 'release-') ## delayed check, PRs do not have access to secrets | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - uses: docker/login-action@v4 | |
| with: | |
| username: jcmoraisjr | |
| password: ${{ secrets.DOCKERHUB_TOKEN }} | |
| - uses: docker/setup-qemu-action@v4 | |
| - uses: docker/setup-buildx-action@v4 | |
| - uses: docker/build-push-action@v7 | |
| with: | |
| context: . | |
| file: builder/Dockerfile | |
| platforms: linux/amd64,linux/arm64/v8,linux/arm/v7,linux/arm/v6,linux/s390x | |
| push: false | |
| tags: haproxy-ingress.localhost:latest |