Skip to content

Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#2075) #2145

Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#2075)

Bump github.com/spf13/cobra from 1.8.0 to 1.8.1 (#2075) #2145

Workflow file for this run

name: Build
on: [push, pull_request]
permissions:
contents: read
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: '^1.20'
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Get dependencies
run: |
go get -v -t -d ./...
if [ -f Gopkg.toml ]; then
curl https://raw.githubusercontent.com/golang/dep/master/install.sh | sh
dep ensure
fi
- name: Check the build
shell: bash -l {0}
run: |
export PATH=${PATH}:`go env GOPATH`/bin
scripts/devtools.sh
make local build