Skip to content

chore(deps): Bump k8s.io/client-go from 0.31.3 to 0.32.0 #11

chore(deps): Bump k8s.io/client-go from 0.31.3 to 0.32.0

chore(deps): Bump k8s.io/client-go from 0.31.3 to 0.32.0 #11

Workflow file for this run

name: Build
concurrency:
group: ${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
on:
pull_request: {}
push:
branches:
- main
env:
CI_TOOLS_DIR: "/home/runner/work/kuma-smoke/.ci_tools"
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: make dev/tools
run: make dev/tools
- name: make check
run: make check
- name: golangci-lint
uses: golangci/golangci-lint-action@v6
with:
version: latest
args: --timeout=10m --verbose
skip-pkg-cache: true
build-test:
name: Build and test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: make dev/tools
run: |
make dev/tools
echo "${CI_TOOLS_DIR}/bin" >> $GITHUB_PATH
- name: make build
run: make build
- name: make run
run: make run
- uses: actions/upload-artifact@b4b15b8c7c6ac21ea08fcf65892d2ee8f75cf882 # v4.4.3
if: always()
with:
name: smoke-report
if-no-files-found: ignore
path: |
raw-report.json
retention-days: ${{ github.event_name == 'pull_request' && 7 || 15 }}