Skip to content

Update kubernetes packages to v0.28.2 #1065

Update kubernetes packages to v0.28.2

Update kubernetes packages to v0.28.2 #1065

Workflow file for this run

name: Build and run tests
# This workflow is triggered on pushes to the repository.
on: [push, pull_request]
env:
GOTOOLCHAIN: local
jobs:
lint:
# This job runs on Linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
check-latest: true
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# always uses the latest patch version.
version: v1.52
args: "--timeout 5m"
vulncheck:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
check-latest: true
- name: Install govulncheck
run: go install golang.org/x/vuln/cmd/govulncheck@latest
- name: Run govulncheck
run: govulncheck ./...
test:
# This job runs on Linux
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.21'
check-latest: true
- name: Cache Go modules
uses: actions/cache@v3
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: Cache testbin binaries
id: cache-testbin
uses: actions/cache@v3
with:
path: testbin
# Use SHA-256 hash of the Makefile file as the key.
# Swapping testbinary versions usally requrie to change the Makefile
key: ${{ runner.os }}-kubebuilder-${{ hashFiles('Makefile') }}
- name: Install Ginkgo CLI
run: go install github.com/onsi/ginkgo/v2/ginkgo@v2.10.0
- name: Run tests and generate coverage
run: |
ENVTEST_K8S_VERSION=1.25.0 make test
- name: Upload coverage results to coveralls
uses: shogo82148/actions-goveralls@v1
with:
path-to-profile: coverprofile.out