Skip to content

Bump k8s.io/apimachinery from 0.29.3 to 0.30.2 #228

Bump k8s.io/apimachinery from 0.29.3 to 0.30.2

Bump k8s.io/apimachinery from 0.29.3 to 0.30.2 #228

Workflow file for this run

on:
pull_request:
branches: [ main ]
push:
branches: [ main ]
permissions:
contents: read
name: build-test
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
with:
go-version: 1.22.x
- run: go env
- name: go lint
run: make lint-go
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4
- name: Set up Go
uses: actions/setup-go@cdcb36043654635271a94b9a6d1392de5bb323a7 # v5
with:
go-version: 1.22.x
- run: go env
- name: go build
run: go build -v ./...
- name: go test
run: go test -v ./...
- name: build catalog-cd
run: go build -o catalog-cd -v .
- name: Upload catalog-cd binary
uses: actions/upload-artifact@65462800fd760344b1a7b4382951275a0abb4808 # v4.3.3
with:
name: catalog-cd-bin
path: catalog-cd