Skip to content

build(deps): bump golang.org/x/crypto from 0.15.0 to 0.17.0 in /cmd/cli #1322

build(deps): bump golang.org/x/crypto from 0.15.0 to 0.17.0 in /cmd/cli

build(deps): bump golang.org/x/crypto from 0.15.0 to 0.17.0 in /cmd/cli #1322

Workflow file for this run

name: lint (on linux)
on:
push:
branches:
- main
pull_request:
types: [opened, synchronize, reopened, labeled, ready_for_review]
branches:
- main
workflow_dispatch:
jobs:
build:
strategy:
matrix:
go-version: ['1.21.x']
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v3
- name: golangci-lint
uses: golangci/golangci-lint-action@v3
with:
version: v1.55.0
- name: Lint linux
run: |
export GOPATH="$(go env GOPATH)"
make lint
make fmt-check
make spell-check