Skip to content

v2026.8.2

Choose a tag to compare

@github-actions github-actions released this 09 Aug 03:37
· 169 commits to main since this release
Immutable release. Only release title and notes can be modified.
084462c

Installation

Homebrew (macOS)

brew install vouch-sh/tap/vouch

To start the agent automatically:

brew services start vouch

winget (Windows)

winget install SmokeTurner.Vouch

APT Repository (Debian/Ubuntu)

curl -fsSL https://packages.vouch.sh/gpg/vouch.asc \
  | gpg --dearmor \
  | sudo tee /usr/share/keyrings/vouch-archive-keyring.gpg > /dev/null

echo "deb [arch=$(dpkg --print-architecture) signed-by=/usr/share/keyrings/vouch-archive-keyring.gpg] https://packages.vouch.sh/apt stable main" \
  | sudo tee /etc/apt/sources.list.d/vouch.list > /dev/null

sudo apt-get update && sudo apt-get install -y vouch

YUM/DNF Repository (Fedora/RHEL)

sudo tee /etc/yum.repos.d/vouch.repo << 'EOF'
[vouch]
name=Vouch
baseurl=https://packages.vouch.sh/rpm/$basearch/
gpgcheck=1
gpgkey=https://packages.vouch.sh/gpg/vouch.asc
enabled=1
EOF

sudo dnf install -y vouch

DEB Package (Debian/Ubuntu)

# amd64
gh release download v2026.8.2 --repo vouch-sh/vouch --pattern "vouch_2026.8.2_amd64.deb"
sudo dpkg -i vouch_2026.8.2_amd64.deb

# arm64
gh release download v2026.8.2 --repo vouch-sh/vouch --pattern "vouch_2026.8.2_arm64.deb"
sudo dpkg -i vouch_2026.8.2_arm64.deb

RPM Package (Fedora/RHEL)

# x86_64
gh release download v2026.8.2 --repo vouch-sh/vouch --pattern "vouch-2026.8.2-1.x86_64.rpm"
sudo rpm -i vouch-2026.8.2-1.x86_64.rpm

# aarch64
gh release download v2026.8.2 --repo vouch-sh/vouch --pattern "vouch-2026.8.2-1.aarch64.rpm"
sudo rpm -i vouch-2026.8.2-1.aarch64.rpm

Binary Downloads

Download the appropriate binary for your platform from the release assets below.

Platform Architecture Archive
Linux x86_64 vouch-v2026.8.2-x86_64-unknown-linux-musl.tar.gz
Linux aarch64 vouch-v2026.8.2-aarch64-unknown-linux-musl.tar.gz
macOS Apple Silicon vouch-v2026.8.2-aarch64-apple-darwin.tar.gz
Windows x86_64 vouch-v2026.8.2-x86_64-pc-windows-msvc.zip
Windows ARM64 vouch-v2026.8.2-aarch64-pc-windows-msvc.zip

Verify integrity

sha256sum -c SHA256SUMS.txt

Verify provenance

gh attestation verify vouch-v2026.8.2-aarch64-apple-darwin.tar.gz --owner vouch-sh

Using Helm (OCI)

helm install vouch-server oci://ghcr.io/vouch-sh/charts/vouch-server \
  --version 2026.8.2 \
  --namespace vouch-server \
  --create-namespace

Using Helm (from release assets)

helm install vouch-server \
  https://github.com/vouch-sh/vouch/releases/download/v2026.8.2/vouch-server-2026.8.2.tgz \
  --namespace vouch-server \
  --create-namespace

Container Image

docker pull ghcr.io/vouch-sh/vouch:v2026.8.2

Verify Attestations

# Container image
gh attestation verify oci://ghcr.io/vouch-sh/vouch:v2026.8.2 \
  --owner vouch-sh

# Binary archives
gh attestation verify vouch-v2026.8.2-aarch64-apple-darwin.tar.gz --owner vouch-sh

What's Changed

  • fix(server): hash the idp_identity index value instead of NUL-joining by @jplock in #882

Full Changelog: v2026.8.1...v2026.8.2