chore(deps): bump k8s.io/client-go from 0.30.1 to 0.30.2 in /go/action_kit_test #534
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 | |
on: | |
push: | |
branches: | |
- 'main' | |
tags: | |
- 'v*' | |
pull_request: | |
branches: | |
- 'main' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: ${{ github.repository }} | |
jobs: | |
go-action-kit-api: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./go/action_kit_api | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# increased fetch depth to support git diff | |
fetch-depth: 2 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- run: ./build.sh | |
- run: git diff --exit-code | |
name: "Ensure that Go API changes (as a consequence of OpenAPI spec changes) are checked in" | |
- run: go get | |
- run: go test | |
go-action-kit-sdk: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./go/action_kit_sdk | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Audit | |
run: | | |
go mod download | |
make audit | |
go-action-kit-commons: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./go/action_kit_commons | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Audit | |
run: | | |
go mod download | |
make audit | |
go-action-kit-test: | |
runs-on: ubuntu-latest | |
defaults: | |
run: | |
working-directory: ./go/action_kit_test | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-go@v5 | |
with: | |
go-version: '1.22' | |
- name: Audit | |
run: | | |
go mod download | |
make audit |