Skip to content

Update all minor and patch updates #23

Update all minor and patch updates

Update all minor and patch updates #23

# Make sure to enable 'Require status checks to pass before merging' on the branch protection,
# and to select the 'golangci-lint' action.
name: golangci-lint
on:
pull_request:
types: [opened, synchronize, reopened]
paths:
- "**.go"
- "go.mod"
- "go.sum"
permissions:
contents: read
pull-requests: read
jobs:
golangci-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout main
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
- name: Set up Go
uses: actions/setup-go@7a3fe6cf4cb3a834922a1244abfce67bcef6a0c5 # v6
with:
go-version-file: "go.mod"
- name: golangci-lint
uses: golangci/golangci-lint-action@1e7e51e771db61008b38414a730f564565cf7c20 # v9
with:
version: v2.6
only-new-issues: true