Skip to content

Bump golang.org/x/crypto from 0.38.0 to 0.45.0 #28

Bump golang.org/x/crypto from 0.38.0 to 0.45.0

Bump golang.org/x/crypto from 0.38.0 to 0.45.0 #28

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
push:
branches: ["master"]
pull_request:
branches: ["master"]
jobs:
build:
name: Build
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
with:
persist-credentials: false
- name: Set up Go
uses: actions/setup-go@4a3601121dd01d1626a1e23e37211e3254c1c06c # v6
with:
go-version-file: "go.mod"
- name: Build
run: go build -v ./...
- name: Test
run: go test -v ./...