Bump the opentelemetry group with 1 update #1674
Workflow file for this run
This file contains 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: Miscellaneous E2E tests | |
on: | |
push: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
pull_request: | |
branches: [ main ] | |
paths-ignore: | |
- '**.md' | |
concurrency: | |
group: e2e-tests-${{ github.ref }}-${{ github.workflow }} | |
cancel-in-progress: true | |
jobs: | |
run-e2e-miscellaneous-test-suite: | |
runs-on: ubuntu-20.04 | |
strategy: | |
matrix: | |
kube-version: | |
- "1.19" | |
- "1.28" | |
name: Run miscellaneous E2E tests | |
steps: | |
- name: "Check out code into the Go module directory" | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- uses: ./hack/actions/e2e | |
with: | |
testsuite_name: miscellaneous | |
kube_version: ${{ matrix.kube-version }} |