Skip to content

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

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

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

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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
-
name: Set up Go
uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5
with:
go-version: "~1.21"
-
uses: actions/cache@3624ceb22c1c5a301c8db4169662070a689d9ea8 # 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 ./...