Skip to content

fix(deps): update k8s.io/test-infra digest to 73928b2 #2404

fix(deps): update k8s.io/test-infra digest to 73928b2

fix(deps): update k8s.io/test-infra digest to 73928b2 #2404

Workflow file for this run

name: Build
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
merge_group:
jobs:
build:
runs-on: ubuntu-latest
steps:
-
name: Checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
-
name: Set up Go
uses: actions/setup-go@41dfa10bad2bb2ae585af6ee5bb4d7d973ad74ed # v5
with:
go-version: "~1.21"
-
uses: actions/cache@6849a6489940f00c2f30c0fb92c6274307ccb58a # v4
with:
path: |
~/.cache/go-build
~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
-
name: Tidy
run: go mod tidy -v
-
name: Build
run: go build -v
-
name: Test
run: go test -v ./...