Skip to content

fix(deps): bump k8s.io/apimachinery from 0.29.4 to 0.30.2 in the dependencies group #131

fix(deps): bump k8s.io/apimachinery from 0.29.4 to 0.30.2 in the dependencies group

fix(deps): bump k8s.io/apimachinery from 0.29.4 to 0.30.2 in the dependencies group #131

Workflow file for this run

# This workflow will build a golang project
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go
name: Go
on:
push:
branches: ["main"]
pull_request:
branches: ["main"]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
checks: write
steps:
- uses: actions/checkout@v3
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: "1.22"
- name: Build
run: go build -v ./...
- name: Golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
- name: Test
run: go test -v ./... -coverprofile ./coverage.txt
- name: Upload coverage reports to Codecov
uses: codecov/codecov-action@v4.0.1
with:
token: ${{ secrets.CODECOV_TOKEN }}