Skip to content

v0.45.1

Choose a tag to compare

@github-actions github-actions released this 29 Jan 07:12
· 37 commits to develop since this release
f7d4c13

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

New Contributors

Full Changelog: v0.45.0...v0.45.1

📂 Files Checksum

1c2911750ac774d2806d67694788c55e66dad39b38761ea10da0a86283e9ae96  ./vendir-linux-amd64
56649836666d3749ad5b47f6a8ce8a7c6e6089e07238517b3c0efb46cad00ba5  ./vendir-windows-amd64.exe
9aaba37eeff49a819ab6fba832e184c41069af6ce5e5817d63691a240fda6fdf  ./vendir-linux-arm64
a859539a021affa7962459556f57e2d8c8e353a9bff1e6673410d292d10033a2  ./vendir-darwin-arm64
ea3e5091b983b79a09f9a0c1fc911d65a2eec4cd7ed86d96735ad2ec129bba40  ./vendir-darwin-amd64