Skip to content

chore(deps): bump ubuntu from 24.04 to 26.04 in /dockerfile #2052

chore(deps): bump ubuntu from 24.04 to 26.04 in /dockerfile

chore(deps): bump ubuntu from 24.04 to 26.04 in /dockerfile #2052

Workflow file for this run

name: Tests
on:
push:
branches:
- main
- release/**
paths-ignore:
- "*.md"
- "charts/**"
- "config/**"
pull_request:
branches:
- main
- release/**
paths-ignore:
- "*.md"
- "charts/**"
- "config/**"
permissions:
contents: read
jobs:
test:
name: Run on Ubuntu
runs-on: ubuntu-latest
strategy:
matrix:
# from https://github.com/kubernetes-sigs/controller-tools/blob/main/envtest-releases.yaml
envtest_k8s_version: [1.23.5, 1.35.0]
steps:
- name: Clone the code
uses: actions/checkout@v6
- name: Setup Go
uses: actions/setup-go@v6
with:
go-version: '~1.25'
- name: Running Tests
run: |
go mod vendor
bash ./scripts/patch-scheduler.sh
make test
env:
ENVTEST_K8S_VERSION: ${{ matrix.envtest_k8s_version }}