Skip to content

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

Merged
olblak merged 2 commits into
mainfrom
updatecli_main_8fd8fe13694bb84290582e9ad87b7a71a33fd3b1ee5f17ac726f00d7efb76bbb
Aug 4, 2026
Merged

deps(go): bump module github.com/getsops/sops/v3 to v3.13.3#9809
olblak merged 2 commits into
mainfrom
updatecli_main_8fd8fe13694bb84290582e9ad87b7a71a33fd3b1ee5f17ac726f00d7efb76bbb

Conversation

@updateclibot

@updateclibot updateclibot Bot commented Aug 4, 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.3

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

v3.13.3
## 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.3/sops-v3.13.3.linux.amd64

# Move the binary in to your PATH
mv sops-v3.13.3.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.3/sops-v3.13.3.checksums.txt
curl -LO https://github.com/getsops/sops/releases/download/v3.13.3/sops-v3.13.3.checksums.sigstore.json

# Verify the checksums file
cosign verify-blob sops-v3.13.3.checksums.txt \
  --bundle sops-v3.13.3.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.3.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.3.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.3/sops-v3.13.3.intoto.jsonl

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

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

### Quay.io

- `quay.io/getsops/sops:v3.13.3`
- `quay.io/getsops/sops:v3.13.3-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.3 \
  --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
* Add ini to supported input/output type descriptions by @TheKhanj in https://github.com/getsops/sops/pull/2239
* build(deps): Bump the go group with 10 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2242
* build(deps): Bump the ci group with 6 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2241
* fix: include decrypted sequence comments in the MAC (fixes #2243) by @cbcoutinho in https://github.com/getsops/sops/pull/2245
* build(deps): Bump the go group with 14 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2251
* build(deps): Bump the ci group with 2 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2250
* build(deps): Bump the go group with 11 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2261
* build(deps): Bump the ci group with 3 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2260
* build(deps): Bump the rust group in /functional-tests with 3 updates by @dependabot[bot] in https://github.com/getsops/sops/pull/2259
* Update dependencies with 'go get -t -u ./...' by @felixfontein in https://github.com/getsops/sops/pull/2248
* Completion scripts: remove leading newline by @felixfontein in https://github.com/getsops/sops/pull/2253
* Release 3.13.3 by @felixfontein in https://github.com/getsops/sops/pull/2249

## New Contributors
* @TheKhanj made their first contribution in https://github.com/getsops/sops/pull/2239
* @cbcoutinho made their first contribution in https://github.com/getsops/sops/pull/2245

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

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

GitHub Action workflow link
Updatecli logo

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 2 commits August 4, 2026 05:14
Made with ❤️️ by updatecli
@updateclibot updateclibot Bot added the dependencies Pull requests that update a dependency file label Aug 4, 2026
@mergify

mergify Bot commented Aug 4, 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
olblak merged commit ce40ee9 into main Aug 4, 2026
8 checks passed
@olblak
olblak deleted the updatecli_main_8fd8fe13694bb84290582e9ad87b7a71a33fd3b1ee5f17ac726f00d7efb76bbb branch August 4, 2026 13:54
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