fix(deps): update module github.com/onsi/ginkgo/v2 to v2.25.0 (#515) #1431
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: docker | |
| on: | |
| push: | |
| branches: | |
| - main | |
| paths: | |
| - .github/workflows/docker.yaml | |
| - Dockerfile | |
| - go.* | |
| - cmd/** | |
| - api/** | |
| - internal/** | |
| tags: | |
| - v* | |
| pull_request: | |
| paths: | |
| - .github/workflows/docker.yaml | |
| - Dockerfile | |
| - go.* | |
| - cmd/** | |
| - api/** | |
| - internal/** | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 10 | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0 | |
| id: metadata | |
| with: | |
| images: ghcr.io/${{ github.repository }} | |
| - uses: int128/docker-build-cache-config-action@338206c80bf9eeb2b9694b7b4fc8c247c317e2a8 # v1.38.0 | |
| id: cache | |
| with: | |
| image: ghcr.io/${{ github.repository }}/cache | |
| - uses: docker/login-action@184bdaa0721073962dff0199f1fb9940f07167d1 # v3.5.0 | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.actor }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - uses: docker/setup-buildx-action@e468171a9de216ec08956ac3ada2f0791b6bd435 # v3.11.1 | |
| - uses: docker/build-push-action@263435318d21b8e681c14492fe198d362a7d2c83 # v6.18.0 | |
| id: build | |
| with: | |
| push: true | |
| tags: ${{ steps.metadata.outputs.tags }} | |
| labels: ${{ steps.metadata.outputs.labels }} | |
| cache-from: ${{ steps.cache.outputs.cache-from }} | |
| cache-to: ${{ steps.cache.outputs.cache-to }} | |
| platforms: linux/amd64,linux/arm64 | |
| e2e-test: | |
| runs-on: ubuntu-latest | |
| timeout-minutes: 20 | |
| steps: | |
| - uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0 | |
| - uses: actions/setup-go@d35c59abb061a4a6fb18e82ac0862c26744d6ab5 # v5.5.0 | |
| with: | |
| go-version-file: go.mod | |
| cache-dependency-path: go.sum | |
| - run: make -C e2e_test cluster | |
| - uses: docker/metadata-action@c1e51972afc2121e065aed6d45c65596fe445f3f # v5.8.0 | |
| id: metadata | |
| with: | |
| images: ghcr.io/${{ github.repository }} | |
| # set outputs.tags to single tag | |
| flavor: latest=false | |
| - uses: int128/wait-for-docker-image-action@4975bd239c55b16ec86bbcca9cab53ac056f8e07 # v1.8.0 | |
| with: | |
| tags: ${{ steps.metadata.outputs.tags }} | |
| - run: make -C e2e_test deploy | |
| env: | |
| CONTROLLER_IMAGE: ${{ steps.metadata.outputs.tags }} | |
| - run: make -C e2e_test test | |
| - run: make -C e2e_test logs-controller | |
| if: always() |