loading up the forgejo repo on tangled to test page performance
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Merge pull request 'chore(dependency): remove GitHub specific actionlint dependency' (#4022) from earl-warren/forgejo:wip-lint-actions into forgejo

Reviewed-on: https://codeberg.org/forgejo/forgejo/pulls/4022
Reviewed-by: Michael Kriese <michael.kriese@gmx.de>

-7
-7
Makefile
··· 36 36 XGO_PACKAGE ?= src.techknowlogick.com/xgo@latest 37 37 GO_LICENSES_PACKAGE ?= github.com/google/go-licenses@v1.6.0 # renovate: datasource=go 38 38 GOVULNCHECK_PACKAGE ?= golang.org/x/vuln/cmd/govulncheck@v1 # renovate: datasource=go 39 - ACTIONLINT_PACKAGE ?= github.com/rhysd/actionlint/cmd/actionlint@v1.7.1 # renovate: datasource=go 40 39 DEADCODE_PACKAGE ?= golang.org/x/tools/internal/cmd/deadcode@v0.14.0 # renovate: datasource=go 41 40 GOMOCK_PACKAGE ?= go.uber.org/mock/mockgen@v0.4.0 # renovate: datasource=go 42 41 ··· 219 218 @echo " - deps-py install python dependencies" 220 219 @echo " - lint lint everything" 221 220 @echo " - lint-fix lint everything and fix issues" 222 - @echo " - lint-actions lint action workflow files" 223 221 @echo " - lint-frontend lint frontend files" 224 222 @echo " - lint-frontend-fix lint frontend files and fix issues" 225 223 @echo " - lint-backend lint backend files" ··· 472 470 lint-editorconfig: 473 471 $(GO) run $(EDITORCONFIG_CHECKER_PACKAGE) templates .forgejo/workflows 474 472 475 - .PHONY: lint-actions 476 - lint-actions: 477 - $(GO) run $(ACTIONLINT_PACKAGE) 478 - 479 473 .PHONY: lint-templates 480 474 lint-templates: .venv node_modules 481 475 @node tools/lint-templates-svg.js ··· 882 876 $(GO) install $(XGO_PACKAGE) 883 877 $(GO) install $(GO_LICENSES_PACKAGE) 884 878 $(GO) install $(GOVULNCHECK_PACKAGE) 885 - $(GO) install $(ACTIONLINT_PACKAGE) 886 879 $(GO) install $(GOMOCK_PACKAGE) 887 880 888 881 node_modules: package-lock.json