Skip to content

Bump golang.org/x/crypto from 0.21.0 to 0.31.0 #57

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

Bump golang.org/x/crypto from 0.21.0 to 0.31.0 #57

Workflow file for this run

name: goreleaser
on:
push:
branches:
- 'main'
tags:
- 'v*'
pull_request:
permissions:
contents: write
id-token: write
packages: write
jobs:
goreleaser:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: '1.20'
cache: true
- run: go mod tidy
- run: go test -v ./...
- name: Install Cosign
uses: sigstore/[email protected]
- uses: goreleaser/goreleaser-action@v4
if: success() && startsWith(github.ref, 'refs/tags/')
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}