Skip to content

fix(go.mod/go.sum): update module github.com/getsops/sops/v3 to v3.10.1#44

Merged
cbarbian-sap merged 2 commits intomainfrom
renovate/minor-deps-golang
Apr 6, 2025
Merged

fix(go.mod/go.sum): update module github.com/getsops/sops/v3 to v3.10.1#44
cbarbian-sap merged 2 commits intomainfrom
renovate/minor-deps-golang

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Mar 31, 2025

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/getsops/sops/v3 v3.9.4 -> v3.10.1 age adoption passing confidence

Release Notes

getsops/sops (github.com/getsops/sops/v3)

v3.10.1

Compare Source

Installation

To install sops, download one of the pre-built binaries provided for your platform from the artifacts attached to this release.

For instance, if you are using Linux on an AMD64 architecture:

### Download the binary
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.linux.amd64

### Move the binary in to your PATH
mv sops-v3.10.1.linux.amd64 /usr/local/bin/sops

### Make the binary executable
chmod +x /usr/local/bin/sops
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. To validate the signature of this file, run the following commands:

### Download the checksums file, certificate and signature
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.pem
curl -LO https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.checksums.sig

### Verify the checksums file
cosign verify-blob sops-v3.10.1.checksums.txt \
  --certificate sops-v3.10.1.checksums.pem \
  --signature sops-v3.10.1.checksums.sig \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature:

### Verify the binary using the checksums file
sha256sum -c sops-v3.10.1.checksums.txt --ignore-missing
Verify artifact provenance

The SLSA provenance of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an in-toto link metadata file named sops-v3.10.1.intoto.jsonl. To verify the provenance of an artifact, you can utilize the slsa-verifier tool:

### Download the metadata file
curl -LO  https://github.com/getsops/sops/releases/download/v3.10.1/sops-v3.10.1.intoto.jsonl

### Verify the provenance of the artifact
slsa-verifier verify-artifact <artifact> \
  --provenance-path sops-v3.10.1.intoto.jsonl \
  --source-uri github.com/getsops/sops \
  --source-tag v3.10.1

Container Images

The sops binaries are also available as container images, based on Debian (slim) and Alpine Linux. The Debian-based container images include any dependencies which may be required to make use of certain key services, such as GnuPG, AWS KMS, Azure Key Vault, and Google Cloud KMS. The Alpine-based container images are smaller in size, but do not include these dependencies.

These container images are available for the following architectures: linux/amd64 and linux/arm64.

GitHub Container Registry
  • ghcr.io/getsops/sops:v3.10.1
  • ghcr.io/getsops/sops:v3.10.1-alpine
Quay.io
  • quay.io/getsops/sops:v3.10.1
  • quay.io/getsops/sops:v3.10.1-alpine
Verify container image signature

The container images are signed using Cosign with GitHub OIDC. To validate the signature of an image, run the following command:

cosign verify ghcr.io/getsops/sops:v3.10.1 \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com \
  -o text
Verify container image provenance

The container images include SLSA provenance attestations. For more information around the verification of this, please refer to the slsa-verifier documentation.

Software Bill of Materials

The Software Bill of Materials (SBOM) for each binary is accessible within the artifacts enclosed with this release. It is presented as an SPDX JSON file, formatted as <binary>.spdx.sbom.json.

What's Changed

Full Changelog: getsops/sops@v3.10.0...v3.10.1

v3.10.0

Compare Source

Installation

To install sops, download one of the pre-built binaries provided for your platform from the artifacts attached to this release.

For instance, if you are using Linux on an AMD64 architecture:

### Download the binary
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.linux.amd64

### Move the binary in to your PATH
mv sops-v3.10.0.linux.amd64 /usr/local/bin/sops

### Make the binary executable
chmod +x /usr/local/bin/sops
Verify checksums file signature

The checksums file provided within the artifacts attached to this release is signed using Cosign with GitHub OIDC. To validate the signature of this file, run the following commands:

### Download the checksums file, certificate and signature
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.pem
curl -LO https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.checksums.sig

### Verify the checksums file
cosign verify-blob sops-v3.10.0.checksums.txt \
  --certificate sops-v3.10.0.checksums.pem \
  --signature sops-v3.10.0.checksums.sig \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com
Verify binary integrity

To verify the integrity of the downloaded binary, you can utilize the checksums file after having validated its signature:

### Verify the binary using the checksums file
sha256sum -c sops-v3.10.0.checksums.txt --ignore-missing
Verify artifact provenance

The SLSA provenance of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an in-toto link metadata file named sops-v3.10.0.intoto.jsonl. To verify the provenance of an artifact, you can utilize the slsa-verifier tool:

### Download the metadata file
curl -LO  https://github.com/getsops/sops/releases/download/v3.10.0/sops-v3.10.0.intoto.jsonl

### Verify the provenance of the artifact
slsa-verifier verify-artifact <artifact> \
  --provenance-path sops-v3.10.0.intoto.jsonl \
  --source-uri github.com/getsops/sops \
  --source-tag v3.10.0

Container Images

The sops binaries are also available as container images, based on Debian (slim) and Alpine Linux. The Debian-based container images include any dependencies which may be required to make use of certain key services, such as GnuPG, AWS KMS, Azure Key Vault, and Google Cloud KMS. The Alpine-based container images are smaller in size, but do not include these dependencies.

These container images are available for the following architectures: linux/amd64 and linux/arm64.

GitHub Container Registry
  • ghcr.io/getsops/sops:v3.10.0
  • ghcr.io/getsops/sops:v3.10.0-alpine
Quay.io
  • quay.io/getsops/sops:v3.10.0
  • quay.io/getsops/sops:v3.10.0-alpine
Verify container image signature

The container images are signed using Cosign with GitHub OIDC. To validate the signature of an image, run the following command:

cosign verify ghcr.io/getsops/sops:v3.10.0 \
  --certificate-identity-regexp=https://github.com/getsops \
  --certificate-oidc-issuer=https://token.actions.githubusercontent.com \
  -o text
Verify container image provenance

The container images include SLSA provenance attestations. For more information around the verification of this, please refer to the slsa-verifier documentation.

Software Bill of Materials

The Software Bill of Materials (SBOM) for each binary is accessible within the artifacts enclosed with this release. It is presented as an SPDX JSON file, formatted as <binary>.spdx.sbom.json.

What's Changed

New Contributors

Full Changelog: getsops/sops@v3.9.4...v3.10.0


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

@renovate renovate bot added the dependencies Pull requests that update a dependency file label Mar 31, 2025
@renovate
Copy link
Contributor Author

renovate bot commented Mar 31, 2025

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 57 additional dependencies were updated

Details:

Package Change
cel.dev/expr v0.19.1 -> v0.22.1
cloud.google.com/go v0.117.0 -> v0.120.0
cloud.google.com/go/auth v0.14.0 -> v0.15.0
cloud.google.com/go/auth/oauth2adapt v0.2.7 -> v0.2.8
cloud.google.com/go/iam v1.3.0 -> v1.4.2
cloud.google.com/go/kms v1.20.5 -> v1.21.1
cloud.google.com/go/longrunning v0.6.3 -> v0.6.6
cloud.google.com/go/monitoring v1.22.0 -> v1.24.1
cloud.google.com/go/storage v1.50.0 -> v1.51.0
github.com/Azure/azure-sdk-for-go/sdk/azcore v1.17.0 -> v1.17.1
github.com/Azure/azure-sdk-for-go/sdk/azidentity v1.8.1 -> v1.8.2
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/azkeys v1.3.0 -> v1.3.1
github.com/Azure/azure-sdk-for-go/sdk/security/keyvault/internal v1.1.0 -> v1.1.1
github.com/AzureAD/microsoft-authentication-library-for-go v1.3.2 -> v1.4.2
github.com/GoogleCloudPlatform/opentelemetry-operations-go/detectors/gcp v1.25.0 -> v1.27.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/exporter/metric v0.49.0 -> v0.51.0
github.com/GoogleCloudPlatform/opentelemetry-operations-go/internal/resourcemapping v0.49.0 -> v0.51.0
github.com/ProtonMail/go-crypto v1.1.5 -> v1.1.6
github.com/aws/aws-sdk-go-v2 v1.33.0 -> v1.36.3
github.com/aws/aws-sdk-go-v2/aws/protocol/eventstream v1.6.7 -> v1.6.10
github.com/aws/aws-sdk-go-v2/config v1.29.1 -> v1.29.12
github.com/aws/aws-sdk-go-v2/credentials v1.17.54 -> v1.17.65
github.com/aws/aws-sdk-go-v2/feature/ec2/imds v1.16.24 -> v1.16.30
github.com/aws/aws-sdk-go-v2/feature/s3/manager v1.17.53 -> v1.17.69
github.com/aws/aws-sdk-go-v2/internal/configsources v1.3.28 -> v1.3.34
github.com/aws/aws-sdk-go-v2/internal/endpoints/v2 v2.6.28 -> v2.6.34
github.com/aws/aws-sdk-go-v2/internal/ini v1.8.1 -> v1.8.3
github.com/aws/aws-sdk-go-v2/internal/v4a v1.3.28 -> v1.3.34
github.com/aws/aws-sdk-go-v2/service/internal/accept-encoding v1.12.1 -> v1.12.3
github.com/aws/aws-sdk-go-v2/service/internal/checksum v1.5.2 -> v1.7.0
github.com/aws/aws-sdk-go-v2/service/internal/presigned-url v1.12.9 -> v1.12.15
github.com/aws/aws-sdk-go-v2/service/internal/s3shared v1.18.9 -> v1.18.15
github.com/aws/aws-sdk-go-v2/service/kms v1.37.13 -> v1.38.1
github.com/aws/aws-sdk-go-v2/service/s3 v1.74.0 -> v1.78.2
github.com/aws/aws-sdk-go-v2/service/sso v1.24.11 -> v1.25.2
github.com/aws/aws-sdk-go-v2/service/ssooidc v1.28.10 -> v1.30.0
github.com/aws/aws-sdk-go-v2/service/sts v1.33.9 -> v1.33.17
github.com/aws/smithy-go v1.22.1 -> v1.22.3
github.com/cloudflare/circl v1.5.0 -> v1.6.0
github.com/cncf/xds/go v0.0.0-20241223141626-cff3c89139a3 -> v0.0.0-20250326154945-ae57f3c0d45f
github.com/go-jose/go-jose/v4 v4.0.4 -> v4.0.5
github.com/golang-jwt/jwt/v5 v5.2.1 -> v5.2.2
github.com/googleapis/enterprise-certificate-proxy v0.3.4 -> v0.3.6
github.com/hashicorp/go-secure-stdlib/parseutil v0.1.8 -> v0.2.0
github.com/hashicorp/vault/api v1.15.0 -> v1.16.0
github.com/mattn/go-colorable v0.1.13 -> v0.1.14
go.opentelemetry.io/contrib/detectors/gcp v1.34.0 -> v1.35.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.58.0 -> v0.60.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.58.0 -> v0.60.0
go.opentelemetry.io/otel/sdk/metric v1.34.0 -> v1.35.0
golang.org/x/net v0.37.0 -> v0.38.0
golang.org/x/oauth2 v0.27.0 -> v0.28.0
google.golang.org/api v0.218.0 -> v0.228.0
google.golang.org/genproto v0.0.0-20241223144023-3abc09e42ca8 -> v0.0.0-20250324211829-b45e905df463
google.golang.org/genproto/googleapis/api v0.0.0-20250218202821-56aae31c358a -> v0.0.0-20250324211829-b45e905df463
google.golang.org/genproto/googleapis/rpc v0.0.0-20250218202821-56aae31c358a -> v0.0.0-20250324211829-b45e905df463
google.golang.org/protobuf v1.36.5 -> v1.36.6

@renovate renovate bot force-pushed the renovate/minor-deps-golang branch 2 times, most recently from 1351ae2 to cf2e5a7 Compare April 6, 2025 12:37
@renovate renovate bot force-pushed the renovate/minor-deps-golang branch from cf2e5a7 to b331038 Compare April 6, 2025 13:07
@cbarbian-sap cbarbian-sap self-requested a review April 6, 2025 13:31
@cbarbian-sap cbarbian-sap merged commit 4330ff8 into main Apr 6, 2025
7 checks passed
@cbarbian-sap cbarbian-sap deleted the renovate/minor-deps-golang branch April 6, 2025 13:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants