/
githubmirror
/
act
Обзор
Документация
Войти
/
githubmirror
/
act
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
Makefile
129 строк
3 KB
ChristopherHX
chore(deps): Security update December 2025 (#5984)
28 дек 2025, 14:17
Не верифицирован
28 дек 2025, 14:17
e935690
Код
Авторство
О чём код?
PREFIX ?= /usr/local VERSION ?= $(shell git describe --tags --dirty --always | sed -e 's/^v//') IS_SNAPSHOT = $(if $(findstring -, $(VERSION)),true,false) MAJOR_VERSION = $(word 1, $(subst ., ,$(VERSION))) MINOR_VERSION = $(word 2, $(subst ., ,$(VERSION))) PATCH_VERSION = $(word 3, $(subst ., ,$(word 1,$(subst -, , $(VERSION))))) NEW_VERSION ?= $(MAJOR_VERSION).$(MINOR_VERSION).$(shell echo $$(( $(PATCH_VERSION) + 1)) ) GOVULNCHECK_PACKAGE ?= golang.org/x/vuln/cmd/govulncheck@v1 fix = false ifeq (true,$(fix)) FIX = --fix endif ACT ?= go run main.go HAS_TOKEN = $(if $(test -e ~/.config/github/token),true,false) ifeq (true,$(HAS_TOKEN)) export GITHUB_TOKEN := $(shell cat ~/.config/github/token) endif .PHONY: pr pr: tidy format-all lint test .PHONY: build build: go build -ldflags "-X main.version=$(VERSION)" -o dist/local/act main.go .PHONY: format format: go fmt ./... .PHONY: format-all format-all: go fmt ./... npx prettier --write . .PHONY: test test: go test ./... $(ACT) .PHONY: lint-go lint-go: golangci-lint run $(FIX) .PHONY: lint-js lint-js: npx standard $(FIX) .PHONY: lint-md lint-md: npx markdownlint . $(FIX) .PHONY: lint-rest lint-rest: docker run --rm -it \ -v $(PWD):/tmp/lint \ -e GITHUB_STATUS_REPORTER=false \ -e GITHUB_COMMENT_REPORTER=false \ megalinter/megalinter-go:v5 .PHONY: lint lint: lint-go lint-rest .PHONY: lint-fix lint-fix: lint-md lint-go .PHONY: fix fix: make lint-fix fix=true .PHONY: tidy tidy: go mod tidy .PHONY: install install: build @cp dist/local/act $(PREFIX)/bin/act @chmod 755 $(PREFIX)/bin/act @act --version .PHONY: installer installer: @GO111MODULE=off go get github.com/goreleaser/godownloader godownloader -r nektos/act -o install.sh .PHONY: promote promote: @git fetch --tags @echo "VERSION:$(VERSION) IS_SNAPSHOT:$(IS_SNAPSHOT) NEW_VERSION:$(NEW_VERSION)" ifeq (false,$(IS_SNAPSHOT)) @echo "Unable to promote a non-snapshot" @exit 1 endif ifneq ($(shell git status -s),) @echo "Unable to promote a dirty workspace" @exit 1 endif echo -n $(NEW_VERSION) > VERSION git add VERSION git commit -m "chore: bump VERSION to $(NEW_VERSION)" git tag -a -m "releasing v$(NEW_VERSION)" v$(NEW_VERSION) git push origin master git push origin v$(NEW_VERSION) .PHONY: snapshot snapshot: goreleaser build \ --clean \ --single-target \ --snapshot .PHONY: clean all .PHONY: upgrade upgrade: go get -u go mod tidy # "$(shell go env GOROOT)/bin/go" allows us to use an outdated global go tool and use the build toolchain defined by the project # go build auto upgrades to the same toolchain version as defined in the go.mod file .PHONY: deps-tools deps-tools: ## install tool dependencies "$(shell go env GOROOT)/bin/go" install $(GOVULNCHECK_PACKAGE) .PHONY: security-check security-check: deps-tools GOEXPERIMENT= "$(shell go env GOROOT)/bin/go" run $(GOVULNCHECK_PACKAGE) -show color ./...