mirror of
https://codeberg.org/Codeberg/pages-server.git
synced 2025-04-12 00:44:07 +00:00
This PR contains the following updates: | Package | Update | Change | |---|---|---| | [golangci/golangci-lint](https://github.com/golangci/golangci-lint) | patch | `v1.64.5` -> `v1.64.7` | --- ### Release Notes <details> <summary>golangci/golangci-lint (golangci/golangci-lint)</summary> ### [`v1.64.7`](https://github.com/golangci/golangci-lint/releases/tag/v1.64.7) [Compare Source](https://github.com/golangci/golangci-lint/compare/v1.64.6...v1.64.7) `golangci-lint` is a free and open-source project built by volunteers. If you value it, consider supporting us, the [maintainers](https://opencollective.com/golangci-lint) and [linter authors](https://golangci-lint.run/product/thanks/). We appreciate it! ❤️ For key updates, see the [changelog](https://golangci-lint.run/product/changelog/#​1647). #### Changelog - [`94946f3`](94946f3c52
) build(deps): bump github.com/OpenPeeDeeP/depguard/v2 from 2.2.0 to 2.2.1 ([#​5509](https://github.com/golangci/golangci-lint/issues/5509)) - [`132365e`](132365e252
) build(deps): bump github.com/golangci/dupl from [`3e9179a`](https://github.com/golangci/golangci-lint/commit/3e9179ac440a) to [`f665c8d`](https://github.com/golangci/golangci-lint/commit/f665c8d69b32) ([#​5512](https://github.com/golangci/golangci-lint/issues/5512)) - [`bddd1bc`](bddd1bcedb
) build(deps): bump github.com/securego/gosec/v2 from 2.22.1 to 2.22.2 ([#​5515](https://github.com/golangci/golangci-lint/issues/5515)) - [`624fb4e`](624fb4e717
) build(deps): bump golang.org/x/mod from 0.23.0 to 0.24.0 ([#​5507](https://github.com/golangci/golangci-lint/issues/5507)) - [`8cffdb7`](8cffdb7d21
) build(deps): bump golang.org/x/oauth2 from 0.27.0 to 0.28.0 in /scripts/gen_github_action_config in the scripts group ([#​5521](https://github.com/golangci/golangci-lint/issues/5521)) - [`7a3f3d7`](7a3f3d7c94
) build(deps): bump golang.org/x/tools from 0.30.0 to 0.31.0 ([#​5508](https://github.com/golangci/golangci-lint/issues/5508)) - [`c13fd5b`](c13fd5b762
) build(deps): bump honnef.co/go/tools from 0.6.0 to 0.6.1 ([#​5510](https://github.com/golangci/golangci-lint/issues/5510)) ### [`v1.64.6`](https://github.com/golangci/golangci-lint/blob/HEAD/CHANGELOG.md#v1646) [Compare Source](https://github.com/golangci/golangci-lint/compare/v1.64.5...v1.64.6) 1. Linters bug fixes - `asciicheck`: from 0.4.0 to 0.4.1 - `contextcheck`: from 1.1.5 to 1.1.6 - `errcheck`: from 1.8.0 to 1.9.0 - `exptostd`: from 0.4.1 to 0.4.2 - `ginkgolinter`: from 0.19.0 to 0.19.1 - `go-exhaustruct`: from 3.3.0 to 3.3.1 - `gocheckcompilerdirectives`: from 1.2.1 to 1.3.0 - `godot`: from 1.4.20 to 1.5.0 - `perfsprint`: from 0.8.1 to 0.8.2 - `revive`: from 1.6.1 to 1.7.0 - `tagalign`: from 1.4.1 to 1.4.2 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "* * * * 0,6" (UTC), Automerge - "* 0-3 * * *" (UTC). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS4xOTEuNCIsInVwZGF0ZWRJblZlciI6IjM5LjE5NS4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=--> Co-authored-by: woodpecker-bot <woodpecker-bot@obermui.de> Reviewed-on: https://codeberg.org/Codeberg/pages-server/pulls/439 Co-authored-by: Dependency bot <renovate-bot@noreply.codeberg.org> Co-committed-by: Dependency bot <renovate-bot@noreply.codeberg.org>
30 lines
706 B
YAML
30 lines
706 B
YAML
when:
|
|
- event: pull_request
|
|
branch:
|
|
- ${CI_REPO_DEFAULT_BRANCH}
|
|
|
|
steps:
|
|
lint:
|
|
depends_on: []
|
|
image: golangci/golangci-lint:v1.64.7
|
|
commands:
|
|
- go version
|
|
- go install mvdan.cc/gofumpt@latest
|
|
- "[ $(gofumpt -extra -l . | wc -l) != 0 ] && { echo 'code not formated'; exit 1; }"
|
|
- golangci-lint run --timeout 10m --build-tags integration
|
|
|
|
editor-config:
|
|
depends_on: []
|
|
image: mstruebing/editorconfig-checker:v3.2.0
|
|
|
|
yamllint:
|
|
image: pipelinecomponents/yamllint:0.33.0
|
|
depends_on: []
|
|
commands:
|
|
- yamllint .
|
|
|
|
prettier:
|
|
image: docker.io/woodpeckerci/plugin-prettier:1.1.0
|
|
depends_on: []
|
|
settings:
|
|
version: 3.2.5
|