Bump the otel group with 11 updates #625
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: update-dependabot | |
| on: | |
| push: | |
| branches: | |
| - dependabot/** | |
| pull_request: | |
| branches: | |
| - dependabot/** | |
| permissions: | |
| contents: write | |
| jobs: | |
| generate_some_code: | |
| name: update deps | |
| runs-on: ubuntu-latest | |
| if: ${{ github.actor == 'dependabot[bot]' }} | |
| steps: | |
| - name: Set up Go | |
| uses: knative/actions/setup-go@main | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| with: | |
| ref: ${{ github.head_ref }} | |
| path: ./src/github.com/${{ github.repository }} | |
| fetch-depth: 0 | |
| - name: Run hack scripts | |
| working-directory: ./src/github.com/${{ github.repository }} | |
| run: | | |
| ./hack/update-deps.sh | |
| ./hack/update-codegen.sh | |
| - name: git push | |
| working-directory: ./src/github.com/${{ github.repository }} | |
| run: | | |
| if ! git diff --exit-code --quiet | |
| then | |
| git config --local user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
| git config --local user.name "github-actions[bot]" | |
| git add . | |
| git commit -m "Run ./hack/update-codegen.sh" | |
| git push | |
| fi |