Skip to content

Bump sigs.k8s.io/yaml from 1.3.0 to 1.4.0 (#143) #199

Bump sigs.k8s.io/yaml from 1.3.0 to 1.4.0 (#143)

Bump sigs.k8s.io/yaml from 1.3.0 to 1.4.0 (#143) #199

Workflow file for this run

name: Main CI WorkFlow
on:
push:
branches:
- 'master'
- 'release-*'
tags:
- 'v*'
pull_request:
branches:
- 'master'
- 'release-*'
jobs:
build:
runs-on: ubuntu-latest
timeout-minutes: 30
name: Binary build
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- uses: actions/cache@v4
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
- name: Test
run: make test