Skip to content

go: bump github.com/spf13/cobra from 1.3.0 to 1.8.0 #251

go: bump github.com/spf13/cobra from 1.3.0 to 1.8.0

go: bump github.com/spf13/cobra from 1.3.0 to 1.8.0 #251

Workflow file for this run

# NOTE: This name appears in GitHub's Checks API and in workflow's status badge.
name: ci-lint
# Trigger the workflow when:
on:
# A push occurs to one of the matched branches.
push:
branches:
- master
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- master
# Global environment variables.
env:
CURL_CMD: curl --proto =https --tlsv1.2 --location --silent --show-error --fail
jobs:
lint:
# NOTE: This name appears in GitHub's Checks API.
name: lint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
with:
# Check out pull request's HEAD commit instead of the merge commit to
# prevent gitlint from failing due to too long commit message titles,
# e.g. "Merge 3e621938d65caaa67f8e35d145335d889d470fc8 into 19a39b2f66cd7a165082d1486b2f1eb36ec2354a".
ref: ${{ github.event.pull_request.head.sha }}
# Fetch all history so gitlint can check the relevant commits.
fetch-depth: '0'
- name: Set up Python 3
uses: actions/setup-python@v1
with:
python-version: '3.x'
- name: Set up Node.js 18
uses: actions/setup-node@v3
with:
node-version: '18.x'
- name: Set up Go 1.21
uses: actions/setup-go@v1
with:
go-version: "1.21.x"
- name: Install shfmt
run: |
cd $(mktemp --directory /tmp/shfmt.XXXXX)
${CURL_CMD} ${SHFMT_URL_PREFIX}/v${SHFMT_VERSION}/shfmt_v${SHFMT_VERSION}_linux_amd64 \
--output shfmt
chmod +x shfmt
sudo mv shfmt /usr/local/bin
env:
SHFMT_URL_PREFIX: https://github.com/mvdan/sh/releases/download/
SHFMT_VERSION: 3.2.1
- name: Install gitlint
run: |
python -m pip install gitlint
- name: Lint git commits
run: |
make lint-git
- name: Lint documentation
run: |
make lint-docs
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Lint Shell code
run: |
make lint-sh
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Lint Go code
# NOTE: Using the official golangci-lint GitHub Action should give
# better performance than manually installing golangci-lint and running
# 'make lint-git'.
uses: golangci/[email protected]
with:
# NOTE: The version must be specified without the patch version.
version: v1.55
# Always run this step so that all linting errors can be seen at once.
if: always()
- name: Check go mod tidy
run: |
make lint-go-mod-tidy
# Always run this step so that all linting errors can be seen at once.
if: always()