Skip to content

Bump golang.org/x/crypto from 0.22.0 to 0.23.0 #954

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

Bump golang.org/x/crypto from 0.22.0 to 0.23.0 #954

Workflow file for this run

name: Build
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
strategy:
matrix:
go: ['1.18', '1.19', '1.20', '1.21', '1.22']
os: ['ubuntu-22.04']
fail-fast: false
name: ${{ matrix.os }} / Go ${{ matrix.go }}
runs-on: ${{ matrix.os }}
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ${{ matrix.go }}
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Test
run: make test EXTRAGOARGS=-v