Skip to content

chore(deps): bump k8s.io/api from 0.30.1 to 0.30.2 #250

chore(deps): bump k8s.io/api from 0.30.1 to 0.30.2

chore(deps): bump k8s.io/api from 0.30.1 to 0.30.2 #250

Workflow file for this run

---
name: Testing - Unit
# Split until path filtering for jobs added
# https://github.community/t/path-filtering-for-jobs-and-steps/16447
on:
push:
branches: [master]
paths:
- "**.go"
- "go.mod"
- "go.sum"
pull_request:
branches: [master]
paths:
- "**.go"
- "go.mod"
- "go.sum"
jobs:
unit:
name: Go Unit Tests
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version-file: go.mod
- name: Run go unit tests
run: |
make test-unit