Skip to content

Bump k8s.io/api from 0.30.1 to 0.30.2 #367

Bump k8s.io/api from 0.30.1 to 0.30.2

Bump k8s.io/api from 0.30.1 to 0.30.2 #367

Workflow file for this run

name: CI
on:
push:
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
jobs:
build:
if: "!contains(github.event.head_commit.message, 'skip ci')"
runs-on: ubuntu-latest
timeout-minutes: 15
strategy:
fail-fast: false
matrix:
images:
- 'mariadb:10.11'
- 'mariadb:10.6'
- 'mysql:8'
kubernetes:
- '1.28'
- '1.29'
- '1.30'
name: make test ${{ matrix.images }} - K8s v${{ matrix.kubernetes }}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Run tests
env:
ENVTEST_K8S_VERSION: ${{ matrix.kubernetes }}
MYSQL_IMAGE: ghcr.io/cuppett/${{ matrix.images }}
run: |
make test