chore(deps): bump sigs.k8s.io/controller-runtime from 0.17.2 to 0.18.2 #444
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: build | |
on: | |
push: | |
branches: | |
- 'master' | |
tags: | |
- 'v*' | |
pull_request: | |
jobs: | |
build: | |
strategy: | |
matrix: | |
go-version: [1.22.x] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup | |
uses: actions/setup-go@v5 | |
with: | |
go-version: ${{ matrix.go-version }} | |
- name: Cache go modules | |
uses: actions/cache@v4.0.2 | |
with: | |
path: ~/go/pkg/mod | |
key: ${{ runner.os }}-go-${{ matrix.go-version }}-${{ hashFiles('**/go.sum') }} | |
restore-keys: ${{ runner.os }}-go-${{ matrix.go-version }}- | |
- name: Download go modules | |
run: go mod download | |
- name: Run go test | |
run: make coverage | |
- name: Run go vet | |
run: make vet | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v5.1.0 | |
with: | |
version: latest | |
skip-pkg-cache: true | |
skip-build-cache: true |