v0.39.2
github-actions
released this
06 Sep 15:39
·
74 commits
to develop
since this release
Installation and signature verification
Installation
By downloading binary from the release
For instance, if you are using Linux on an AMD64 architecture:
# Download the binary
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.39.2/vendir-linux-amd64
# Move the binary in to your PATH
mv vendir-linux-amd64 /usr/local/bin/vendir
# Make the binary executable
chmod +x /usr/local/bin/vendir
Via Homebrew (macOS or Linux)
$ brew tap carvel-dev/carvel
$ brew install vendir
$ vendir version
Verify checksums file signature
Install cosign on your system https://docs.sigstore.dev/system_config/installation/
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/carvel-dev/vendir/releases/download/v0.39.2/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.39.2/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.39.2/checksums.txt.sig
# Verify the checksums file
cosign verify-blob checksums.txt \
--certificate checksums.txt.pem \
--signature checksums.txt.sig \
--certificate-identity-regexp=https://github.com/carvel-dev \
--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 checksums.txt --ignore-missing
✨ What's new
- Bump golang minor version to 1.22 by @devanshuVmware in #397
Full Changelog: v0.39.1...v0.39.2
📂 Files Checksum
23646aad012e53b0a7a40a7fca08b23c752fd38b873d5e87fca67088e4023591 ./vendir-darwin-amd64
35cbbec899fae1222eed93f8f9e86af34e06423d05a64efd9da8d95c75c1bb4f ./vendir-darwin-arm64
8b3007bbed38838fc71840d295bcc961a6510cbba7516b252235b0afaca00a05 ./vendir-linux-arm64
94094a4b69384d3ad6c4c4376f0d79334aea93685dba460243d4a896a0486ca8 ./vendir-windows-amd64.exe
b24a66956dcc1ec2aa5ce356e613803995663ad9ea7dededf100e03fc1ff1120 ./vendir-linux-amd64