Skip to content

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

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

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

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