Skip to content

Build(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #39

Build(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0

Build(deps): bump github.com/spf13/cobra from 1.7.0 to 1.8.0 #39

Workflow file for this run

name: CI
on:
pull_request:
merge_group:
env:
GO_VERSION: "1.20"
jobs:
verification:
name: Verification
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: ${{ env.GO_VERSION }}
- name: Check licenses
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: make license-check
- name: Run verification
run: make check
build:
needs: verification
name: Build
uses: ./.github/workflows/reusable-build-and-push.yml
with:
image_tag: ${{ github.sha }}
push: false
upload: false