Skip to content

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 #13

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

Bump golang.org/x/crypto from 0.14.0 to 0.17.0 #13

Workflow file for this run

name: CI Check PR
on: [ pull_request_target ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
go: [ '1.17' ]
steps:
- name: Set up Go v${{ matrix.go }}
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go }}
- name: Checkout code
uses: actions/checkout@v2
- name: Install deps
run: |
go version
go get -v -d ./...
- name: Cache modules
uses: actions/cache@v2
with:
path: $GOPATH/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: ${{ runner.os }}-go
- name: Vet code
run: go vet
- name: Sample Build
run: go build -v .