Skip to content

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 #293

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0

chore(deps): bump golang.org/x/crypto from 0.14.0 to 0.17.0 #293

Workflow file for this run

name: Build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go-version: [1.21.x]
os: [ubuntu-latest]
runs-on: ${{ matrix.os }}
env:
GO111MODULE: on
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- name: Install dependencies
run: go mod download
- name: Build binary
run: make build