Skip to content

Bump golang.org/x/crypto from 0.12.0 to 0.14.0 #64

Bump golang.org/x/crypto from 0.12.0 to 0.14.0

Bump golang.org/x/crypto from 0.12.0 to 0.14.0 #64

Workflow file for this run

name: build by commit
on:
push:
branches:
- master
- 'feature/**'
pull_request:
branches:
- master
env:
ARTIFACT_VERSION: ${{ github.ref_name }}
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: '1.20'
- name: Check out code into the Go module directory
uses: actions/checkout@v2
- name: Verify go.mod is sane
run: go mod tidy && git diff --no-patch --exit-code
- name: Run code lint
uses: golangci/golangci-lint-action@v3.7.0
with:
args: --timeout=3m
- name: Install dependencies
run: go mod download
- name: Verify build
run: make dev