deps: update go-sev-guest to include fix for badram platform info #9094
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Build Constellation binaries as quality control | |
name: Build Constellation binaries | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
- "release/**" | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
- "**/go.sum" | |
pull_request: | |
paths: | |
- "**.go" | |
- "**/go.mod" | |
- "**/go.sum" | |
jobs: | |
build-binaries: | |
runs-on: [arc-runner-set] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
with: | |
ref: ${{ !github.event.pull_request.head.repo.fork && github.head_ref || '' }} | |
- name: Setup bazel | |
uses: ./.github/actions/setup_bazel_nix | |
with: | |
useCache: "rbe" | |
rbePlatform: "ubuntu-22.04" | |
- name: Build all | |
shell: bash | |
env: | |
bootstrapper: "//bootstrapper/cmd/bootstrapper:bootstrapper_linux_amd64" | |
debugd: "//debugd/cmd/debugd:debugd_linux_amd64" | |
cdbg: "//debugd/cmd/cdbg:all" | |
disk_mapper: "//disk-mapper/cmd:disk-mapper_linux_amd64" | |
measurement_reader: "//measurement-reader/cmd:measurement-reader_linux_amd64" | |
cli: "//cli:all" | |
terraform_provider: "//terraform-provider-constellation:all" | |
run: | | |
bazel build \ | |
--remote_download_minimal \ | |
"${bootstrapper}" \ | |
"${debugd}" \ | |
"${cdbg}" \ | |
"${disk_mapper}" \ | |
"${measurement_reader}" \ | |
"${cli}" \ | |
"${terraform_provider}" |