Skip to content

Bump golang.org/x/crypto from 0.9.0 to 0.17.0 #39

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

Bump golang.org/x/crypto from 0.9.0 to 0.17.0 #39

Workflow file for this run

---
name: Go build
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Go
uses: actions/setup-go@v2
with:
go-version: '1.20'
- name: Build
run: |
apt-get update && apt-get install -y upx
make dev-dependencies
make
make cover
make release
find build -type f ! -name "*.md5" ! -name "*.sha256" -exec upx -9 {} \;