diff --git a/vendor.conf b/vendor.conf index 34d98a0c77..517d80e12c 100644 --- a/vendor.conf +++ b/vendor.conf @@ -29,7 +29,7 @@ github.com/syndtr/gocapability 42c35b4376354fd554efc7ad35e0 github.com/RackSec/srslog a4725f04ec91af1a91b380da679d6e0c2f061e59 github.com/imdario/mergo 1afb36080aec31e0d1528973ebe6721b191b0369 # v0.3.8 -golang.org/x/sync 6e8e738ad208923de99951fe0b48239bfd864f28 +golang.org/x/sync 036812b2e83c0ddf193dd5a34e034151da389d09 # buildkit github.com/moby/buildkit 7e03277b32d4f0150bed0e081d4253b3a8557f13 https://github.com/cpuguy83/buildkit.git # v0.8.3-3-g244e8cde + libnetwork changes diff --git a/vendor/golang.org/x/sync/README.md b/vendor/golang.org/x/sync/README.md index 1f8436cc9c..7c1c8f6c82 100644 --- a/vendor/golang.org/x/sync/README.md +++ b/vendor/golang.org/x/sync/README.md @@ -1,5 +1,7 @@ # Go Sync +[![Go Reference](https://pkg.go.dev/badge/golang.org/x/sync.svg)](https://pkg.go.dev/golang.org/x/sync) + This repository provides Go concurrency primitives in addition to the ones provided by the language and "sync" and "sync/atomic" packages. diff --git a/vendor/golang.org/x/sync/syncmap/go19.go b/vendor/golang.org/x/sync/syncmap/go19.go index 41a59091ee..fa04dba91b 100644 --- a/vendor/golang.org/x/sync/syncmap/go19.go +++ b/vendor/golang.org/x/sync/syncmap/go19.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build go1.9 // +build go1.9 package syncmap diff --git a/vendor/golang.org/x/sync/syncmap/pre_go19.go b/vendor/golang.org/x/sync/syncmap/pre_go19.go index 01a7be7f92..5bba41349c 100644 --- a/vendor/golang.org/x/sync/syncmap/pre_go19.go +++ b/vendor/golang.org/x/sync/syncmap/pre_go19.go @@ -2,6 +2,7 @@ // Use of this source code is governed by a BSD-style // license that can be found in the LICENSE file. +//go:build !go1.9 // +build !go1.9 package syncmap