Skip to content

build(deps): Bump k8s.io/apimachinery from 0.32.1 to 0.34.2 #75

build(deps): Bump k8s.io/apimachinery from 0.32.1 to 0.34.2

build(deps): Bump k8s.io/apimachinery from 0.32.1 to 0.34.2 #75

Workflow file for this run

name: E2E Tests
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
permissions:
contents: read
jobs:
test-e2e:
name: Run E2E Tests
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: true
- name: Create kind cluster
uses: helm/kind-action@v1
with:
cluster_name: kind
- name: Wait for kind cluster to be ready
run: |
kubectl wait --for=condition=Ready nodes --all --timeout=300s
kubectl wait --for=condition=Ready --namespace=kube-system pod --all --timeout=300s
echo "Cluster is ready"
- name: Run E2E tests
run: |
make test-e2e-ci