FazBrowse GitHub Viewer | Trending |
URL:
| Home
Tools: [Download Repo ZIP]   [Original HTTPS Page]

deps(go): bump module github.com/getsops/sops/v3 to v3.13.2 by updateclibot[bot] · Pull Request #9559 · updatecli/updatecli · GitHub

deps(go): bump module github.com/getsops/sops/v3 to v3.13.2 - #9559

Merged
olblak merged 3 commits into
mainfrom
updatecli_main_8fd8fe13694bb84290582e9ad87b7a71a33fd3b1ee5f17ac726f00d7efb76bbb
Jul 11, 2026
Merged

deps(go): bump module github.com/getsops/sops/v3 to v3.13.2#9559
olblak merged 3 commits into
mainfrom
updatecli_main_8fd8fe13694bb84290582e9ad87b7a71a33fd3b1ee5f17ac726f00d7efb76bbb

Conversation

updateclibot Bot commented Jul 10, 2026

Copy link
Copy Markdown
Contributor

deps(go): bump module github.com/getsops/sops/v3

clean: go mod tidy

ran shell command "go mod tidy"

deps(go): bump module github.com/getsops/sops/v3 to v3.13.2

go.mod updated Module path "github.com/getsops/sops/v3" version from "v3.13.1" to "v3.13.2"

v3.13.2
## 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:

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

# Move the binary in to your PATH
mv sops-v3.13.2.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](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of this file, run the following commands:

```shell
# Download the checksums file, certificate and signature
curl -LO https://github.com/getsops/sops/releases/download/v3.13.2/sops-v3.13.2.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.13.2/sops-v3.13.2.checksums.sigstore.json

# Verify the checksums file
cosign verify-blob sops-v3.13.2.checksums.txt \
  --bundle sops-v3.13.2.checksums.sigstore.json \
  --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:

```shell
# Verify the binary using the checksums file
sha256sum -c sops-v3.13.2.checksums.txt --ignore-missing
```

### Verify artifact provenance

The [SLSA provenance](https://slsa.dev/provenance/v0.2) of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an [in-toto](https://in-toto.io/) link metadata file named `sops-v3.13.2.intoto.jsonl`. To verify the provenance of an artifact, you can utilize the [`slsa-verifier`](https://github.com/slsa-framework/slsa-verifier#artifacts) tool:

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

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

## 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.13.2`
- `ghcr.io/getsops/sops:v3.13.2-alpine`

### Quay.io

- `quay.io/getsops/sops:v3.13.2`
- `quay.io/getsops/sops:v3.13.2-alpine`

### Verify container image signature

The container images are signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of an image, run the following command:

```shell
cosign verify ghcr.io/getsops/sops:v3.13.2 \
  --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](https://slsa.dev/provenance/v0.2) attestations. For more information around the verification of this, please refer to the [`slsa-verifier` documentation](https://github.com/slsa-framework/slsa-verifier#containers).

## 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](https://spdx.dev/) JSON file, formatted as `<binary>.spdx.sbom.json`.

## What's Changed
* build(deps): Bump the go group with 3 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2185
* build(deps): Bump github/codeql-action from 4.35.4 to 4.35.5 in the ci group by @dependabot[bot] in https://github.com/getsops/sops/pull/2184
* build(deps): Bump the go group with 11 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2193
* build(deps): Bump the ci group with 4 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2192
* build(deps): Bump serde_json from 1.0.149 to 1.0.150 in /functional-tests in the rust group by @dependabot[bot] in https://github.com/getsops/sops/pull/2191
* build(deps): Bump the go group with 11 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2197
* build(deps): Bump docker/setup-qemu-action from 4.0.0 to 4.1.0 in the ci group by @dependabot[bot] in https://github.com/getsops/sops/pull/2196
* test: unset all age env vars in make test target by @arpitjain099 in https://github.com/getsops/sops/pull/2208
* build(deps): Bump the go group with 10 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2212
* build(deps): Bump the ci group with 2 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2211
* build(deps): Bump the go group with 15 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2218
* build(deps): Bump alpine from 3.23 to 3.24 in /.release in the docker group by @dependabot[bot] in https://github.com/getsops/sops/pull/2217
* fix: handle pointers when serializing context by @tlercher in https://github.com/getsops/sops/pull/2219
* docs: fix typo in exec-file --filename help text by @s3onghyun in https://github.com/getsops/sops/pull/2221
* JSON store: preserve large integers that fit into int64 by @s3onghyun in https://github.com/getsops/sops/pull/2222
* Fix panic when expecting an encrypted string, but a non-string is encountered by @felixfontein in https://github.com/getsops/sops/pull/2227
* Fix INI store no longer double-encoding newlines by @felixfontein in https://github.com/getsops/sops/pull/2189
* exec-file/exec-env: reset supplementary groups when changing user by @felixfontein in https://github.com/getsops/sops/pull/2194
* build(deps): Bump the go group with 6 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2229
* build(deps): Bump actions/checkout from 6.0.3 to 7.0.0 in the ci group by @dependabot[bot] in https://github.com/getsops/sops/pull/2228
* Fix issue when changing user in exec subcommands by @sabre1041 in https://github.com/getsops/sops/pull/2230
* Shorten .md lines by @felixfontein in https://github.com/getsops/sops/pull/2206
* Update all Go dependencies with `go get -t -u ./...` by @felixfontein in https://github.com/getsops/sops/pull/2231
* build(deps): Bump github.com/opencontainers/runc from 1.2.8 to 1.3.6 by @dependabot[bot] in https://github.com/getsops/sops/pull/2233
* build(deps): Bump the ci group with 2 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2236
* Release 3.13.2 by @felixfontein in https://github.com/getsops/sops/pull/2232

## New Contributors
* @arpitjain099 made their first contribution in https://github.com/getsops/sops/pull/2208
* @tlercher made their first contribution in https://github.com/getsops/sops/pull/2219
* @s3onghyun made their first contribution in https://github.com/getsops/sops/pull/2221

**Full Changelog**: https://github.com/getsops/sops/compare/v3.13.1...v3.13.2

v3.13.1
## 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:

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

# Move the binary in to your PATH
mv sops-v3.13.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](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of this file, run the following commands:

```shell
# Download the checksums file, certificate and signature
curl -LO https://github.com/getsops/sops/releases/download/v3.13.1/sops-v3.13.1.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.13.1/sops-v3.13.1.checksums.sigstore.json

# Verify the checksums file
cosign verify-blob sops-v3.13.1.checksums.txt \
  --bundle sops-v3.13.1.checksums.sigstore.json \
  --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:

```shell
# Verify the binary using the checksums file
sha256sum -c sops-v3.13.1.checksums.txt --ignore-missing
```

### Verify artifact provenance

The [SLSA provenance](https://slsa.dev/provenance/v0.2) of the binaries, packages, and SBOMs can be found within the artifacts associated with this release. It is presented through an [in-toto](https://in-toto.io/) link metadata file named `sops-v3.13.1.intoto.jsonl`. To verify the provenance of an artifact, you can utilize the [`slsa-verifier`](https://github.com/slsa-framework/slsa-verifier#artifacts) tool:

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

# Verify the provenance of the artifact
slsa-verifier verify-artifact <artifact> \
  --provenance-path sops-v3.13.1.intoto.jsonl \
  --source-uri github.com/getsops/sops \
  --source-tag v3.13.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.13.1`
- `ghcr.io/getsops/sops:v3.13.1-alpine`

### Quay.io

- `quay.io/getsops/sops:v3.13.1`
- `quay.io/getsops/sops:v3.13.1-alpine`

### Verify container image signature

The container images are signed using [Cosign](https://docs.sigstore.dev/cosign/overview/) with GitHub OIDC. To validate the signature of an image, run the following command:

```shell
cosign verify ghcr.io/getsops/sops:v3.13.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](https://slsa.dev/provenance/v0.2) attestations. For more information around the verification of this, please refer to the [`slsa-verifier` documentation](https://github.com/slsa-framework/slsa-verifier#containers).

## 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](https://spdx.dev/) JSON file, formatted as `<binary>.spdx.sbom.json`.

## What's Changed
* build(deps): Bump the go group with 9 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2178
* build(deps): Bump the ci group with 2 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2177
* Apply 'gofmt -w -s' to all .go files by @felixfontein in https://github.com/getsops/sops/pull/2181
* GPG agent for age key passwords: avoid percent-encoding of cache key to blow up size > 50 characters by @felixfontein in https://github.com/getsops/sops/pull/2180
* Redirect documentation to github.com/getsops/docs/ by @felixfontein in https://github.com/getsops/sops/pull/2083
* Release 3.13.1 by @felixfontein in https://github.com/getsops/sops/pull/2183


**Full Changelog**: https://github.com/getsops/sops/compare/v3.13.0...v3.13.1

GitHub Action workflow link

Created automatically by Updatecli

Options:

Most of Updatecli configuration is done via its manifest(s).

  • If you close this pull request, Updatecli will automatically reopen it, the next time it runs.
  • If you close this pull request and delete the base branch, Updatecli will automatically recreate it, erasing all previous commits made.

Feel free to report any issues at github.com/updatecli/updatecli.
If you find this tool useful, do not hesitate to star our GitHub repository as a sign of appreciation, and/or to tell us directly on our chat!

updateclibot Bot added the dependencies Pull requests that update a dependency file label Jul 10, 2026

mergify Bot commented Jul 11, 2026

Copy link
Copy Markdown

Tick the box to add this pull request to the merge queue (same as @mergifyio queue).

  • Queue this pull request

olblak merged commit ed96055 into main Jul 11, 2026
8 of 10 checks passed
olblak deleted the updatecli_main_8fd8fe13694bb84290582e9ad87b7a71a33fd3b1ee5f17ac726f00d7efb76bbb branch July 11, 2026 22:24
This file contains hidden or 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
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.

1 participant


Back | FazBrowse Home | New Git URL