This repository was archived by the owner on Nov 17, 2025. It is now read-only.
Bump k8s.io/client-go from 0.23.4 to 0.34.2 #430
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: contrib-tests | |
| on: | |
| push: | |
| branches: [ main ] | |
| tags: | |
| - v[0-9]+.[0-9]+.[0-9]+.* | |
| pull_request: | |
| jobs: | |
| contrib_tests: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@v2 | |
| - name: Setup Go | |
| uses: actions/setup-go@v2 | |
| with: | |
| go-version: 1.17 | |
| - name: Run Contrib Tests | |
| run: | | |
| contrib_path=/tmp/opentelemetry-collector-contrib | |
| git clone https://github.com/open-telemetry/opentelemetry-collector-contrib.git $contrib_path | |
| ./check-contrib.sh |