Skip to content

Commit 875defe

Browse files
authored
Update common files. (istio#950)
1 parent 8d15f12 commit 875defe

7 files changed

+18
-12
lines changed

.commonfiles.sha

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
37d7abc98680f183c02efad281720d1db3072c64
1+
a9d5cc326ae26ee31b71daa518d9a71992f2c30b

.golangci.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
1+
# WARNING: DO NOT EDIT, THIS FILE IS PROBABLY A COPY
2+
#
13
# The original version of this file is located in the https://github.com/istio/common-files repo.
24
# If you're looking at this file in a different repo and want to make a change, please go to the
3-
# common-files repo, make the change there and check it in. Then come back to this repo and run the
4-
# scripts/updatecommonfiles.sh script.
5+
# common-files repo, make the change there and check it in. Then come back to this repo and run
6+
# "make updatecommon".
57

68
service:
79
# When updating this, also update bin/linters.sh accordingly

BUGS-AND-FEATURE-REQUESTS.md

+3
Original file line numberDiff line numberDiff line change
@@ -5,3 +5,6 @@ You can report bugs and feature requests to the Istio team in one of three place
55
- [Product Bugs and Feature Requests](https://github.com/istio/istio/issues)
66
- [Documentation Bugs and Feature Requests](https://github.com/istio/istio.io/issues)
77
- [Community and Governance Issues](https://github.com/istio/community/issues)
8+
9+
For security vulnerabilities, please don't report a bug (which is public) and instead follow
10+
[these procedures](https://istio.io/about/security-vulnerabilities/).

Makefile.common.mk

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
#
33
# The original version of this file is located in the https://github.com/istio/common-files repo.
44
# If you're looking at this file in a different repo and want to make a change, please go to the
5-
# common-files repo, make the change there and check it in. Then come back to this repo and run the
6-
# scripts/updatecommonfiles.sh script.
5+
# common-files repo, make the change there and check it in. Then come back to this repo and run
6+
# "make updatecommon".
77

88
# Copyright 2018 Istio Authors
99
#

scripts/check_license.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
# The original version of this file is located in the https://github.com/istio/common-files repo.
66
# If you're looking at this file in a different repo and want to make a change, please go to the
7-
# common-files repo, make the change there and check it in. Then come back to this repo and run the
8-
# scripts/updatecommonfiles.sh script.
7+
# common-files repo, make the change there and check it in. Then come back to this repo and run
8+
# "make updatecommon".
99

1010
# Copyright 2018 Istio Authors
1111
#

scripts/run_gofmt.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
# The original version of this file is located in the https://github.com/istio/common-files repo.
66
# If you're looking at this file in a different repo and want to make a change, please go to the
7-
# common-files repo, make the change there and check it in. Then come back to this repo and run the
8-
# scripts/updatecommonfiles.sh script.
7+
# common-files repo, make the change there and check it in. Then come back to this repo and run
8+
# "make updatecommon".
99

1010
# Copyright 2018 Istio Authors
1111
#

scripts/run_golangci.sh

+4-3
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,8 @@
44
#
55
# The original version of this file is located in the https://github.com/istio/common-files repo.
66
# If you're looking at this file in a different repo and want to make a change, please go to the
7-
# common-files repo, make the change there and check it in. Then come back to this repo and run the
8-
# scripts/updatecommonfiles.sh script.
7+
# common-files repo, make the change there and check it in. Then come back to this repo and run
8+
# "make updatecommon".
99

1010
# Copyright 2019 Istio Authors
1111
#
@@ -36,4 +36,5 @@ fi
3636
GOLANGCI_VERSION="v1.16.0"
3737
curl -sfL https://install.goreleaser.com/github.com/golangci/golangci-lint.sh | sh -s -- -b "$GOPATH"/bin "$GOLANGCI_VERSION"
3838
golangci-lint --version
39-
env GOGC=25 golangci-lint run ${FIX} -j 1 -v ./...
39+
# For tuning and when switching versions PLEASE REFERENCE: https://github.com/istio/istio/issues/14888
40+
env GOGC=25 golangci-lint run ${FIX} -j 8 -v ./...

0 commit comments

Comments
 (0)