chore(deps): bump github.com/hochfrequenz/go-bo4e from 0.37.0 to 0.41.0 #691
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: golangci-lint | |
on: | |
push: | |
pull_request: | |
jobs: | |
golangci: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
submodules: 'true' | |
ref: ${{ github.event.workflow_run.head_branch }} | |
token: ${{ secrets.CSS_SUBMODULE_ACCESS_TOKEN }} # token with repo scope; expires 2026-01-20 | |
# https://github.com/Hochfrequenz/malo-id-generator/settings/secrets/actions/CSS_SUBMODULE_ACCESS_TOKEN | |
# https://github.com/settings/tokens/2072150841 | |
- name: golangci-lint | |
uses: golangci/golangci-lint-action@v6 | |
with: | |
version: v1.61.0 | |
# Optional: working directory, useful for monorepos | |
# working-directory: somedir | |
# Optional: golangci-lint command line arguments. see https://golangci-lint.run/usage/quick-start | |
# args: --enable gofmt,dupl,goconst,goconst,gocyclo | |
#--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 action will use pre-installed Go | |
# skip-go-installation: true |