Bump k8s.io/kubectl from 0.25.3 to 0.29.2 #482
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: main | |
on: | |
push: | |
branches: [ main ] | |
tags: [ "v*" ] | |
paths-ignore: [ '**.md' ] | |
pull_request: | |
types: [ opened, synchronize ] | |
paths-ignore: [ '**.md' ] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/[email protected] | |
- uses: actions/setup-go@v4 | |
with: | |
go-version: '1.20' | |
# ref: https://text.superbrothers.dev/200510-ensure-go-mod-is-already-tidied-on-ci/ | |
- name: Ensure go.mod is already tidied | |
run: go mod tidy && git diff -s --exit-code go.sum | |
- uses: golangci/[email protected] | |
with: | |
version: latest | |
args: --timeout=3m0s | |
skip-go-installation: true | |
skip-pkg-cache: true | |
skip-build-cache: true | |
- name: Run tests | |
run: go test -race -v ./... |