Skip to content

Bump golang.org/x/crypto from 0.0.0-20220926161630-eccd6366d1be to 0.17.0 #66

Bump golang.org/x/crypto from 0.0.0-20220926161630-eccd6366d1be to 0.17.0

Bump golang.org/x/crypto from 0.0.0-20220926161630-eccd6366d1be to 0.17.0 #66

Workflow file for this run

on: [push, pull_request]
name: Linux
jobs:
test:
strategy:
matrix:
go-version: [ 1.20.x, 1.21.x ]
os: [ubuntu-22.04,ubuntu-20.04]
runs-on: ${{ matrix.os }}
steps:
- name: Install Go
uses: actions/setup-go@v2
with:
go-version: ${{ matrix.go-version }}
- name: Checkout code
uses: actions/checkout@v2
- uses: actions/cache@v1
with:
path: ~/go/pkg/mod
key: ${{ runner.os }}-go-${{ hashFiles('**/go.sum') }}
restore-keys: |
${{ runner.os }}-go-
- name: vendor
run: go mod vendor
- name: Test
run: go test -count=1 ./pkg/...