Skip to content

Bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.2 #5

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

Bump github.com/onsi/ginkgo/v2 from 2.20.0 to 2.20.2 #5

Workflow file for this run

name: golangci-lint
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
golangci:
name: lint
runs-on: ubuntu-latest
container: mcr.microsoft.com/devcontainers/go:1-1.22-bullseye
env:
GOFLAGS: -buildvcs=false
permissions:
# Required: allow read access to the content for analysis.
contents: read
# Optional: allow read access to pull request. Use with `only-new-issues` option.
pull-requests: read
# Optional: allow write access to checks to allow the action to annotate code in the PR.
checks: write
steps:
- uses: actions/checkout@v4
- name: Lint
uses: golangci/golangci-lint-action@v6
with:
version: v1.59
args: --timeout=5m
# We are not using actions/setup-go so we must use the embedded problem matchers
problem-matchers: true