Skip to content

Bump golang.org/x/crypto from 0.1.0 to 0.17.0 #20

Bump golang.org/x/crypto from 0.1.0 to 0.17.0

Bump golang.org/x/crypto from 0.1.0 to 0.17.0 #20

Workflow file for this run

name: build
on: pull_request
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
-
uses: actions/checkout@v2
-
id: vars
run: |
echo ::set-output name=go_version::$(grep '^FROM go' .github/go/Dockerfile | cut -d ' ' -f 2 | cut -d ':' -f 2)
echo "Using Go version ${{ steps.vars.outputs.go_version }}"
-
name: Setup go
uses: actions/setup-go@v2
with:
go-version: ${{ steps.vars.outputs.go_version }}
-
name: Download Go modules
run: go mod download
-
name: Go build
run: go build -o /dev/null ./...