From a1d794dc7a85cc489fe2657d6316ee21802ec7b5 Mon Sep 17 00:00:00 2001 From: Pulumi Bot <30351955+pulumi-bot@users.noreply.github.com> Date: Thu, 29 Aug 2024 12:07:55 +0100 Subject: [PATCH] [internal] Update GitHub Actions workflow files (#380) --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 102d0997..06c5bdb0 100644 --- a/Makefile +++ b/Makefile @@ -123,12 +123,12 @@ install_plugins: .pulumi/bin/pulumi .pulumi/bin/pulumi plugin install converter terraform 1.0.15 lint_provider: provider - cd provider && golangci-lint run -c ../.golangci.yml + cd provider && golangci-lint run --path-prefix provider -c ../.golangci.yml # `lint_provider.fix` is a utility target meant to be run manually # that will run the linter and fix errors when possible. lint_provider.fix: - cd provider && golangci-lint run -c ../.golangci.yml --fix + cd provider && golangci-lint run --path-prefix provider -c ../.golangci.yml --fix # `make provider_no_deps` builds the provider binary directly, without ensuring that # `cmd/pulumi-resource-xyz/schema.json` is valid and up to date.