fix(deps): update k8s.io/utils digest to 702e33f #385
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: CI tests | |
on: pull_request | |
jobs: | |
ci: | |
runs-on: ubuntu-latest | |
name: ci | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version: '1.23' | |
- name: Run Gosec Security Scanner | |
uses: securego/gosec@master | |
with: | |
args: -quiet -exclude=G107 ./... | |
- name: Run golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
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.10.0 | |
with: | |
install_only: true | |
- name: Prepare test environment | |
run: make local-test | |
- name: Run e2e tests | |
run: make e2e-tests |