build(deps): bump k8s.io/client-go from 0.34.2 to 0.34.3 #635
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: Go | |
| on: | |
| pull_request: | |
| paths: | |
| - .github/workflows/go.yml | |
| - '**/*.go' | |
| - go.sum | |
| - justfile | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-24.04 | |
| container: ghcr.io/linkerd/dev:v48-go | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 | |
| - run: just go-lint --verbose --timeout=10m | |
| fmt: | |
| runs-on: ubuntu-24.04 | |
| container: ghcr.io/linkerd/dev:v48-go | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 | |
| - run: just go-fmt-check | |
| unit-test: | |
| runs-on: ubuntu-24.04 | |
| container: ghcr.io/linkerd/dev:v48-go | |
| steps: | |
| - uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 | |
| - run: git config --global --add safe.directory "$PWD" # actions/runner#2033 | |
| - run: just proxy-init-test-unit | |