🤖 Update module github.com/onsi/gomega to v1.42.0 #1240
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: verify | |
| on: | |
| pull_request: | |
| push: | |
| tags: | |
| - "v*" | |
| branches: | |
| - main | |
| paths-ignore: | |
| - "**.md" | |
| jobs: | |
| verify: | |
| runs-on: ubuntu-latest | |
| # update-codegen requires the workspace to be placed in GOPATH. | |
| # Set up env var, working directory, and check out at the correct path in GOPATH. | |
| env: | |
| GOPATH: /home/runner/work/gardener-extension-shoot-flux/gardener-extension-shoot-flux/go | |
| defaults: | |
| run: | |
| working-directory: go/src/github.com/stackitcloud/gardener-extension-shoot-flux | |
| steps: | |
| - uses: actions/checkout@v6 | |
| with: | |
| path: go/src/github.com/stackitcloud/gardener-extension-shoot-flux | |
| - uses: actions/setup-go@v6 | |
| with: | |
| go-version-file: go/src/github.com/stackitcloud/gardener-extension-shoot-flux/go.mod | |
| cache-dependency-path: go/src/github.com/stackitcloud/gardener-extension-shoot-flux/go.sum | |
| - name: Configure git | |
| run: | | |
| git config --global user.email "ci@gardener.cloud" | |
| git config --global user.name "ci" | |
| - run: make init | |
| - run: make verify-extended |