Skip to content

Bump golang.org/x/crypto from 0.31.0 to 0.35.0 #287

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

Bump golang.org/x/crypto from 0.31.0 to 0.35.0 #287

Workflow file for this run

name: Go
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Set up Go 1.x
uses: actions/setup-go@v5
with:
go-version: ^1.23.0
id: go
- name: Check out code into the Go module directory
uses: actions/checkout@v4
- name: Check tidy go modules
run: |-
make fmt tidy license
[ -z "$(git status --porcelain)" ] ||
(echo "git status shows difference after make commands" && exit 1)
- name: Lint, Build, and Test
run: make lint vet license-check build test