-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #46 from felixfontein/deps-2
Update SOPS dependency, fix import
- Loading branch information
Showing
5 changed files
with
441 additions
and
447 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,77 @@ | ||
""" | ||
Patch go.mod so that the lines 'go xxx' to 'toolchain xxx' are as in git's | ||
HEAD. | ||
This is necessary since newer 'go mod tidy' versions tend to modify these | ||
lines. Since we check in CI that 'go mod tidy' does not change go.mod, this | ||
causes CI to fail. | ||
""" | ||
|
||
import subprocess | ||
|
||
|
||
def split_go_mod(contents: str) -> tuple[list[str], list[str], list[str]]: | ||
""" | ||
Given the contents of go.mod, splits it into three lists of lines | ||
(with endings): | ||
1. The lines before 'go'; | ||
2. The lines starting with 'go' and ending with 'toolchain'; | ||
3. The lines after 'toolchain'. | ||
""" | ||
parts: tuple[list[str], list[str], list[str]] = ([], [], []) | ||
index = 0 | ||
for line in contents.splitlines(keepends=True): | ||
next_index = index | ||
if line.startswith('go '): | ||
index = next_index = 1 | ||
if line.startswith('toolchain '): | ||
next_index = 2 | ||
parts[index].append(line) | ||
index = next_index | ||
return parts | ||
|
||
|
||
def get_file_contents_from_git_revision(filename: str, revision: str) -> str: | ||
""" | ||
Get the file contents of ``filename`` from Git revision ``revision``. | ||
""" | ||
p = subprocess.run( | ||
['git', 'show', f'{revision}:{filename}'], | ||
stdout=subprocess.PIPE, | ||
check=True, | ||
encoding='utf-8', | ||
) | ||
return p.stdout | ||
|
||
|
||
def read_file(filename: str) -> str: | ||
""" | ||
Read the file's contents. | ||
""" | ||
with open(filename, 'r', encoding='utf-8') as f: | ||
return f.read() | ||
|
||
|
||
def write_file(filename: str, contents: str) -> None: | ||
""" | ||
Write the file's contents. | ||
""" | ||
with open(filename, 'w', encoding='utf-8') as f: | ||
f.write(contents) | ||
|
||
|
||
def main(): | ||
""" | ||
Patches go.mod. | ||
""" | ||
filename = 'go.mod' | ||
_, go_versions, __ = split_go_mod( | ||
get_file_contents_from_git_revision(filename, 'HEAD') | ||
) | ||
head, _, tail = split_go_mod(read_file(filename)) | ||
lines = head + go_versions + tail | ||
write_file(filename, ''.join(lines)) | ||
|
||
|
||
if __name__ == '__main__': | ||
main() |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,106 +1,130 @@ | ||
module github.com/mozilla/sotp | ||
|
||
go 1.19 | ||
go 1.22 | ||
|
||
toolchain go1.23.4 | ||
|
||
require ( | ||
github.com/getsops/sops/v3 v3.9.2 | ||
github.com/xlzd/gotp v0.1.0 | ||
go.mozilla.org/sops/v3 v3.7.3 | ||
google.golang.org/grpc v1.65.0 | ||
google.golang.org/grpc v1.68.0 | ||
gopkg.in/yaml.v2 v2.4.0 | ||
) | ||
|
||
require ( | ||
cloud.google.com/go/compute/metadata v0.3.0 // indirect | ||
filippo.io/age v1.0.0 // indirect | ||
github.com/Azure/azure-sdk-for-go v68.0.0+incompatible // indirect | ||
github.com/Azure/go-autorest v14.2.0+incompatible // indirect | ||
github.com/Azure/go-autorest/autorest v0.11.29 // indirect | ||
github.com/Azure/go-autorest/autorest/adal v0.9.23 // indirect | ||
github.com/Azure/go-autorest/autorest/azure/auth v0.5.12 // indirect | ||
github.com/Azure/go-autorest/autorest/azure/cli v0.4.6 // indirect | ||
github.com/Azure/go-autorest/autorest/date v0.3.0 // indirect | ||
github.com/Azure/go-autorest/autorest/to v0.4.0 // indirect | ||
github.com/Azure/go-autorest/autorest/validation v0.3.1 // indirect | ||
github.com/Azure/go-autorest/logger v0.2.1 // indirect | ||
github.com/Azure/go-autorest/tracing v0.6.0 // indirect | ||
github.com/ProtonMail/go-crypto v0.0.0-20220407094043-a94812496cf5 // indirect | ||
github.com/armon/go-metrics v0.3.10 // indirect | ||
github.com/armon/go-radix v1.0.0 // indirect | ||
github.com/aws/aws-sdk-go v1.44.293 // indirect | ||
cel.dev/expr v0.16.1 // indirect | ||
cloud.google.com/go v0.116.0 // indirect | ||
cloud.google.com/go/auth v0.10.2 // indirect | ||
cloud.google.com/go/auth/oauth2adapt v0.2.5 // indirect | ||
cloud.google.com/go/compute/metadata v0.5.2 // indirect | ||
cloud.google.com/go/iam v1.2.2 // indirect | ||
cloud.google.com/go/kms v1.20.1 // indirect | ||
cloud.google.com/go/longrunning v0.6.2 // indirect | ||
cloud.google.com/go/monitoring v1.21.2 // indirect | ||
cloud.google.com/go/storage v1.47.0 // indirect | ||
filippo.io/age v1.2.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.16.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/internal v1.10.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.3.0 // indirect | ||
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.1.0 // indirect | ||
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.1 // indirect | ||
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.24.1 // indirect | ||
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.48.1 // indirect | ||
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.48.1 // indirect | ||
github.com/ProtonMail/go-crypto v1.1.3 // indirect | ||
github.com/aws/aws-sdk-go-v2 v1.32.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/config v1.28.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/credentials v1.17.47 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.21 // indirect | ||
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.42 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.25 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.4.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/kms v1.37.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/s3 v1.70.0 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sso v1.24.7 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.6 // indirect | ||
github.com/aws/aws-sdk-go-v2/service/sts v1.33.2 // indirect | ||
github.com/aws/smithy-go v1.22.1 // indirect | ||
github.com/blang/semver v3.5.1+incompatible // indirect | ||
github.com/cenkalti/backoff/v3 v3.2.2 // indirect | ||
github.com/cenkalti/backoff/v4 v4.3.0 // indirect | ||
github.com/census-instrumentation/opencensus-proto v0.4.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cloudflare/circl v1.4.0 // indirect | ||
github.com/cncf/xds/go v0.0.0-20240905190251-b4127c9b8d78 // indirect | ||
github.com/cpuguy83/go-md2man/v2 v2.0.5 // indirect | ||
github.com/davecgh/go-spew v1.1.2-0.20180830191138-d8f796af33cc // indirect | ||
github.com/dimchansky/utfbom v1.1.1 // indirect | ||
github.com/fatih/color v1.16.0 // indirect | ||
github.com/envoyproxy/go-control-plane v0.13.0 // indirect | ||
github.com/envoyproxy/protoc-gen-validate v1.1.0 // indirect | ||
github.com/fatih/color v1.18.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/getsops/gopgagent v0.0.0-20240527072608-0c14999532fe // indirect | ||
github.com/go-jose/go-jose/v4 v4.0.4 // indirect | ||
github.com/go-logr/logr v1.4.2 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/golang-jwt/jwt/v4 v4.5.0 // indirect | ||
github.com/golang-jwt/jwt/v5 v5.2.1 // indirect | ||
github.com/golang/groupcache v0.0.0-20210331224755-41bb18bfe9da // indirect | ||
github.com/golang/protobuf v1.5.4 // indirect | ||
github.com/golang/snappy v0.0.4 // indirect | ||
github.com/google/s2a-go v0.1.7 // indirect | ||
github.com/google/go-cmp v0.6.0 // indirect | ||
github.com/google/s2a-go v0.1.8 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.2 // indirect | ||
github.com/googleapis/gax-go/v2 v2.12.0 // indirect | ||
github.com/googleapis/enterprise-certificate-proxy v0.3.4 // indirect | ||
github.com/googleapis/gax-go/v2 v2.14.0 // indirect | ||
github.com/goware/prefixer v0.0.0-20160118172347-395022866408 // indirect | ||
github.com/hashicorp/errwrap v1.1.0 // indirect | ||
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect | ||
github.com/hashicorp/go-hclog v1.6.3 // indirect | ||
github.com/hashicorp/go-immutable-radix v1.3.1 // indirect | ||
github.com/hashicorp/go-multierror v1.1.1 // indirect | ||
github.com/hashicorp/go-plugin v1.4.3 // indirect | ||
github.com/hashicorp/go-retryablehttp v0.7.7 // indirect | ||
github.com/hashicorp/go-rootcerts v1.0.2 // indirect | ||
github.com/hashicorp/go-secure-stdlib/mlock v0.1.2 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.3 // indirect | ||
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 // indirect | ||
github.com/hashicorp/go-secure-stdlib/strutil v0.1.2 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.2 // indirect | ||
github.com/hashicorp/go-uuid v1.0.2 // indirect | ||
github.com/hashicorp/go-version v1.4.0 // indirect | ||
github.com/hashicorp/golang-lru v0.5.4 // indirect | ||
github.com/hashicorp/go-sockaddr v1.0.7 // indirect | ||
github.com/hashicorp/hcl v1.0.0 // indirect | ||
github.com/hashicorp/vault/api v1.5.0 // indirect | ||
github.com/hashicorp/vault/sdk v0.4.1 // indirect | ||
github.com/hashicorp/yamux v0.0.0-20211028200310-0bc27b27de87 // indirect | ||
github.com/howeyc/gopass v0.0.0-20210920133722-c8aef6fb66ef // indirect | ||
github.com/jmespath/go-jmespath v0.4.0 // indirect | ||
github.com/hashicorp/vault/api v1.15.0 // indirect | ||
github.com/kylelemons/godebug v1.1.0 // indirect | ||
github.com/lib/pq v1.10.9 // indirect | ||
github.com/mattn/go-colorable v0.1.13 // indirect | ||
github.com/mattn/go-isatty v0.0.20 // indirect | ||
github.com/mitchellh/copystructure v1.2.0 // indirect | ||
github.com/mitchellh/go-homedir v1.1.0 // indirect | ||
github.com/mitchellh/go-testing-interface v1.14.1 // indirect | ||
github.com/mitchellh/go-wordwrap v1.0.1 // indirect | ||
github.com/mitchellh/mapstructure v1.4.3 // indirect | ||
github.com/mitchellh/reflectwalk v1.0.2 // indirect | ||
github.com/niemeyer/pretty v0.0.0-20200227124842-a10e7caefd8e // indirect | ||
github.com/oklog/run v1.1.0 // indirect | ||
github.com/pierrec/lz4 v2.6.1+incompatible // indirect | ||
github.com/mitchellh/mapstructure v1.5.0 // indirect | ||
github.com/pkg/browser v0.0.0-20240102092130-5ac0b6a4141c // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/planetscale/vtprotobuf v0.6.1-0.20240319094008-0393e58bdf10 // indirect | ||
github.com/pmezard/go-difflib v1.0.1-0.20181226105442-5d4384ee4fb2 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/ryanuber/go-glob v1.0.0 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
go.mozilla.org/gopgagent v0.0.0-20170926210634-4d7ea76ff71a // indirect | ||
github.com/urfave/cli v1.22.16 // indirect | ||
go.opencensus.io v0.24.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.47.0 // indirect | ||
go.opentelemetry.io/otel v1.22.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.22.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.22.0 // indirect | ||
go.uber.org/atomic v1.9.0 // indirect | ||
golang.org/x/crypto v0.23.0 // indirect | ||
golang.org/x/net v0.25.0 // indirect | ||
golang.org/x/oauth2 v0.20.0 // indirect | ||
golang.org/x/sys v0.20.0 // indirect | ||
golang.org/x/term v0.20.0 // indirect | ||
golang.org/x/text v0.15.0 // indirect | ||
golang.org/x/time v0.5.0 // indirect | ||
google.golang.org/api v0.162.0 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240528184218-531527333157 // indirect | ||
google.golang.org/protobuf v1.34.1 // indirect | ||
gopkg.in/check.v1 v1.0.0-20200227125254-8fa46927fb4f // indirect | ||
go.opentelemetry.io/contrib/detectors/gcp v1.29.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.55.0 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.55.0 // indirect | ||
go.opentelemetry.io/otel v1.30.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.30.0 // indirect | ||
go.opentelemetry.io/otel/sdk v1.29.0 // indirect | ||
go.opentelemetry.io/otel/sdk/metric v1.29.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.30.0 // indirect | ||
golang.org/x/crypto v0.29.0 // indirect | ||
golang.org/x/net v0.31.0 // indirect | ||
golang.org/x/oauth2 v0.24.0 // indirect | ||
golang.org/x/sync v0.9.0 // indirect | ||
golang.org/x/sys v0.27.0 // indirect | ||
golang.org/x/term v0.26.0 // indirect | ||
golang.org/x/text v0.20.0 // indirect | ||
golang.org/x/time v0.8.0 // indirect | ||
google.golang.org/api v0.209.0 // indirect | ||
google.golang.org/genproto v0.0.0-20241113202542-65e8d215514f // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20241104194629-dd2ea8efbc28 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20241113202542-65e8d215514f // indirect | ||
google.golang.org/grpc/stats/opentelemetry v0.0.0-20240907200651-3ffb98b2c93a // indirect | ||
google.golang.org/protobuf v1.35.2 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/square/go-jose.v2 v2.6.0 // indirect | ||
gopkg.in/urfave/cli.v1 v1.20.0 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.