Skip to content

Bump github.com/sigstore/cosign/v2 from 2.2.3 to 2.2.4 #29

Bump github.com/sigstore/cosign/v2 from 2.2.3 to 2.2.4

Bump github.com/sigstore/cosign/v2 from 2.2.3 to 2.2.4 #29

Workflow file for this run

name: Push
on:
push:
branches:
- main
# HINT(lukasmalkmus): Make sure the workflow is only ever run once for each
# commit that has been pushed.
concurrency:
group: ${{ github.ref }}
cancel-in-progress: true
jobs:
lint:
name: Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
cache: false
- run: echo "GOLANGCI_LINT_VERSION=$(go list -m -f '{{.Version}}' github.com/golangci/golangci-lint)" >> $GITHUB_ENV
- uses: golangci/golangci-lint-action@v4
with:
version: ${{ env.GOLANGCI_LINT_VERSION }}
test:
name: Test
needs: lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- run: make test
build:
name: Build
needs: test
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: actions/setup-go@v5
with:
go-version-file: go.mod
- uses: goreleaser/goreleaser-action@v5
with:
args: build --snapshot