Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2 #354

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2

Bump github.com/onsi/ginkgo/v2 from 2.20.1 to 2.20.2 #354

Workflow file for this run

on: push
name: Build and release on push
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Test
run: make test
release:
name: Release
runs-on: ubuntu-latest
if: startsWith(github.ref, 'refs/tags/')
needs: [ "test" ]
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Install Go
uses: actions/setup-go@v5
with:
go-version-file: 'go.mod'
- name: Run GoReleaser
uses: goreleaser/goreleaser-action@v6
with:
version: latest
args: release --clean
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}