2023-12-15 16:35:41 +01:00
|
|
|
# SPDX-FileCopyrightText: 2023 Winni Neessen <wn@neessen.dev>
|
2023-12-08 14:42:27 +01:00
|
|
|
#
|
2023-12-15 16:35:41 +01:00
|
|
|
# SPDX-License-Identifier: MIT
|
2023-12-08 14:42:27 +01:00
|
|
|
|
|
|
|
name: golangci-lint
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
tags:
|
|
|
|
- v*
|
|
|
|
branches:
|
|
|
|
- main
|
|
|
|
pull_request:
|
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
# Optional: allow read access to pull request. Use with `only-new-issues` option.
|
|
|
|
# pull-requests: read
|
|
|
|
jobs:
|
|
|
|
golangci:
|
|
|
|
name: lint
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
2024-03-21 16:21:39 +01:00
|
|
|
- name: Harden Runner
|
2024-09-11 11:00:59 +02:00
|
|
|
uses: step-security/harden-runner@91182cccc01eb5e619899d80e4e971d6181294a7 # v2.10.1
|
2024-03-21 16:21:39 +01:00
|
|
|
with:
|
|
|
|
egress-policy: audit
|
|
|
|
|
2024-07-11 11:02:53 +02:00
|
|
|
- uses: actions/setup-go@0a12ed9d6a96ab950c8f026ed9f722fe0da7ef32 # v5.0.2
|
2023-12-08 14:42:27 +01:00
|
|
|
with:
|
|
|
|
go-version: '1.21'
|
2024-10-08 10:25:30 +02:00
|
|
|
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4.2.1
|
2023-12-08 14:42:27 +01:00
|
|
|
- name: golangci-lint
|
2024-10-03 10:15:10 +02:00
|
|
|
uses: golangci/golangci-lint-action@971e284b6050e8a5849b72094c50ab08da042db8 # v6.1.1
|
2023-12-08 14:42:27 +01:00
|
|
|
with:
|
|
|
|
# Optional: version of golangci-lint to use in form of v1.2 or v1.2.3 or `latest` to use the latest version
|
|
|
|
version: latest
|
|
|
|
|
|
|
|
# Optional: working directory, useful for monorepos
|
|
|
|
# working-directory: somedir
|
|
|
|
|
|
|
|
# Optional: golangci-lint command line arguments.
|
|
|
|
# args: --issues-exit-code=0
|
|
|
|
|
|
|
|
# Optional: show only new issues if it's a pull request. The default value is `false`.
|
|
|
|
# only-new-issues: true
|
|
|
|
|
|
|
|
# Optional: if set to true then the all caching functionality will be complete disabled,
|
|
|
|
# takes precedence over all other caching options.
|
|
|
|
# skip-cache: true
|
|
|
|
|
|
|
|
# Optional: if set to true then the action don't cache or restore ~/go/pkg.
|
|
|
|
# skip-pkg-cache: true
|
|
|
|
|
|
|
|
# Optional: if set to true then the action don't cache or restore ~/.cache/go-build.
|
|
|
|
# skip-build-cache: true
|