Skip to content

v0.45.3

Choose a tag to compare

@github-actions github-actions released this 16 Apr 07:07
· 33 commits to develop since this release
825e8a6

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.45.3/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.45.3/checksums.txt
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.45.3/checksums.txt.pem
curl -LO https://github.com/carvel-dev/vendir/releases/download/v0.45.3/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 Changed

  • Update carvel-dev/semver to include stability-aware sorting fixes by @sameerforge in #445

Full Changelog: v0.45.2...v0.45.3

📂 Files Checksum

4c27422b42a83ed598e5548542c0cd19d185002f6d4ae8e12d59df27ebcdf572  ./vendir-darwin-arm64
cb951dedcf2e64d8d76cb9c205d13ce78f6a8802a74caa1205ec47bc9f2dac65  ./vendir-linux-arm64
52a584cf8c9c97b0f9693f33e404b971f3f65bff3a136d979d7b92c8a8f5cf62  ./vendir-darwin-amd64
5d73e1c1eccf245585887c99ebe004712adfaa5db66b212066df37b572475fca  ./vendir-windows-amd64.exe
7dc6dd9706170b442a7aaf3b4e29da57cca722a3252ed8f6ac9c2997e93a0aa5  ./vendir-linux-amd64