This repository was archived by the owner on Dec 3, 2025. It is now read-only.
fix(deps): update module github.com/onsi/ginkgo to v2 #1008
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: PR pipeline | |
| on: | |
| pull_request: {} | |
| permissions: | |
| contents: read | |
| packages: write | |
| jobs: | |
| build-images: | |
| uses: ./.github/workflows/build-images.yaml | |
| with: | |
| push: false | |
| upload_images: true | |
| platforms: "linux/amd64" | |
| ref: ${{ github.ref }} | |
| tag: dev | |
| e2e: | |
| runs-on: ubuntu-latest | |
| needs: build-images | |
| steps: | |
| - name: Set up Docker Buildx | |
| uses: docker/setup-buildx-action@v3 | |
| - name: Download artifact | |
| uses: actions/download-artifact@v3 | |
| with: | |
| name: images | |
| path: /tmp | |
| - name: Load image | |
| run: | | |
| docker load --input /tmp/agent.tar | |
| docker load --input /tmp/manager.tar | |
| docker image ls -a | |
| - name: Checkout repository | |
| uses: actions/checkout@v4 | |
| with: | |
| repository: ${{ inputs.repository }} | |
| ref: ${{ inputs.ref }} | |
| submodules: true | |
| - uses: actions/setup-go@v5 | |
| with: | |
| go-version: '^1.20' | |
| - uses: azure/setup-kubectl@v4 | |
| - name: run e2e | |
| env: | |
| REGISTRY: ghcr.io | |
| AGENT_IMAGE: ghcr.io/${{ github.repository }}/agent:dev | |
| MANAGER_IMAGE: ghcr.io/${{ github.repository }}/manager:dev | |
| run: | | |
| make kind | |
| make run-e2e AGENT_IMAGE="$AGENT_IMAGE" MANAGER_IMAGE="$MANAGER_IMAGE" |