Skip to content

Bump golang.org/x/crypto from 0.17.0 to 0.31.0 #31

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

Bump golang.org/x/crypto from 0.17.0 to 0.31.0 #31

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
arch: [linux-386, linux-amd64, linux-arm, linux-arm64, darwin-amd64, darwin-arm64, windows-386, windows-amd64]
include:
- arch: linux-386
goos: linux
goarch: 386
- arch: linux-amd64
goos: linux
goarch: amd64
- arch: linux-arm
goos: linux
goarch: arm
- arch: linux-arm64
goos: linux
goarch: arm64
- arch: darwin-amd64
goos: darwin
goarch: amd64
- arch: darwin-arm64
goos: darwin
goarch: arm64
- arch: windows-386
goos: windows
goarch: 386
- arch: windows-amd64
goos: windows
goarch: amd64
steps:
- uses: actions/checkout@v2
- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: 1.19
- name: Build
run: mkdir -p bin/${{ matrix.goos }}/${{ matrix.goarch }}
- name: Build
run: go build -o bin/${{ matrix.goos }}/${{ matrix.goarch }}/
env:
CGO_ENABLED: 0
GOARCH: ${{ matrix.goarch }}
GOOS: ${{ matrix.goos }}
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
# Artifact name
path: bin