Skip to content
This repository has been archived by the owner on Jul 31, 2023. It is now read-only.

Commit

Permalink
Fix formatting to pass with go1.17 (#1270)
Browse files Browse the repository at this point in the history
The CI job currently uses an unpinned image. This was recently updated
to golang 1.17, causing all PRs to fail. This fixes those build failures
  • Loading branch information
howardjohn committed Sep 14, 2021
1 parent fb455b0 commit dcf8515
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 0 deletions.
1 change: 1 addition & 0 deletions tag/profile_19.go
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build go1.9
// +build go1.9

package tag
Expand Down
1 change: 1 addition & 0 deletions tag/profile_not19.go
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !go1.9
// +build !go1.9

package tag
Expand Down
1 change: 1 addition & 0 deletions trace/trace_go11.go
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build go1.11
// +build go1.11

package trace
Expand Down
1 change: 1 addition & 0 deletions trace/trace_nongo11.go
Expand Up @@ -12,6 +12,7 @@
// See the License for the specific language governing permissions and
// limitations under the License.

//go:build !go1.11
// +build !go1.11

package trace
Expand Down

0 comments on commit dcf8515

Please sign in to comment.