Skip to content

Bump github.com/go-git/go-git/v5 from 5.6.0 to 5.11.0 #44

Bump github.com/go-git/go-git/v5 from 5.6.0 to 5.11.0

Bump github.com/go-git/go-git/v5 from 5.6.0 to 5.11.0 #44

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 }}