Skip to content

Bump golang.org/x/crypto from 0.18.0 to 0.23.0 #72

Bump golang.org/x/crypto from 0.18.0 to 0.23.0

Bump golang.org/x/crypto from 0.18.0 to 0.23.0 #72

Workflow file for this run

---
name: build
on: [push, pull_request]
jobs:
build:
strategy:
matrix:
go_version: [1.19.x, 1.20.x, 1.21.x]
name: Go ${{ matrix.go_version }}
runs-on: ubuntu-latest
steps:
- uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go_version }}
id: go
- uses: actions/checkout@v4
- name: Download Go modules
run: go mod download
env:
GOPROXY: https://proxy.golang.org
- name: Run linter
uses: golangci/golangci-lint-action@v3
with:
version: v1.54
- name: Run tests
run: go test -mod readonly -race