Skip to content

Commit 7dc3e2d

Browse files
authored
Update requirements.txt in fetch versions (#2106)
When we update to new versions of Python plugins, we should search/replace with the new version number.
1 parent 8b9efd5 commit 7dc3e2d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ DOCKER_BUILD_EXTRA_ARGS ?=
88
DOCKER_BUILDER := bufbuild-plugins
99
DOCKER_CACHE_DIR ?= $(TMP)/dockercache
1010
GO ?= go
11-
GOLANGCI_LINT_VERSION ?= v2.4.0
11+
GOLANGCI_LINT_VERSION ?= v2.6.1
1212
GOLANGCI_LINT := $(TMP)/golangci-lint-$(GOLANGCI_LINT_VERSION)
1313

1414
GO_TEST_FLAGS ?= -race -count=1

internal/cmd/fetcher/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -288,7 +288,7 @@ func copyFile(
288288
}()
289289
filename := filepath.Base(dest)
290290
switch filename {
291-
case "Dockerfile", "Dockerfile.wasm", "buf.plugin.yaml", "build.csproj", "package.json":
291+
case "Dockerfile", "Dockerfile.wasm", "buf.plugin.yaml", "build.csproj", "package.json", "requirements.txt":
292292
// We want to update these with the new version
293293
default:
294294
// Everything else just copy as-is

0 commit comments

Comments
 (0)