Skip to content

dependabot(deps): bump k8s.io/api from 0.27.1 to 0.27.2 #126

dependabot(deps): bump k8s.io/api from 0.27.1 to 0.27.2

dependabot(deps): bump k8s.io/api from 0.27.1 to 0.27.2 #126

Workflow file for this run

name: CI tests
on: pull_request
jobs:
ci:
runs-on: ubuntu-latest
name: ci
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Run Gosec Security Scanner
uses: securego/gosec@master
with:
args: -quiet -exclude=G107 ./...
- name: Run golangci-lint
uses: golangci/golangci-lint-action@v3
with:
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
# version: v1.46
args: -v --timeout 5m --no-config ./...
- name: Install k8s Kind Cluster
uses: helm/kind-action@v1.5.0
with:
install_only: true
- name: Prepare test environment
run: make local-test
- name: Run e2e tests
run: make e2e-tests