Skip to content

Bump k8s.io/apimachinery from 0.30.2 to 0.30.3 #58

Bump k8s.io/apimachinery from 0.30.2 to 0.30.3

Bump k8s.io/apimachinery from 0.30.2 to 0.30.3 #58

Workflow file for this run

name: CI
on:
push:
branches:
- master
paths-ignore:
- '**.md'
- '.gitignore'
pull_request:
paths-ignore:
- '**.md'
workflow_dispatch:
jobs:
go-ci:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up go
uses: actions/setup-go@v5
with:
go-version-file: ./go.mod
cache: true
- name: Resolve go dependency
if: ${{ steps.setup-go.outputs.cache-hit != 'true' }}
run: "go mod download"
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v6
with:
args: --timeout=5m
- name: Run go test
run: "go test ./..."