mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-11-09 07:17:10 -05:00
* deps: update GitHub action dependencies * ci: dont update Go through renovate --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: Daniel Weiße <dw@edgeless.systems>
27 lines
847 B
YAML
27 lines
847 B
YAML
name: Check measurements reproducibility
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
type: string
|
|
description: The version of the measurements that are downloaded from the CDN.
|
|
required: true
|
|
ref:
|
|
type: string
|
|
description: The git ref to check out. You probably want this to be the tag of the release you are testing.
|
|
required: true
|
|
|
|
jobs:
|
|
check-reproducibility:
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@08eba0b27e820071cde6df949e0beb9ba4906955 # v4.3.0
|
|
with:
|
|
ref: ${{ inputs.ref || github.ref }}
|
|
|
|
- name: Check reproducibility
|
|
uses: ./.github/actions/check_measurements_reproducibility
|
|
with:
|
|
version: ${{ github.event.inputs.version }}
|
|
ref: ${{ github.event.inputs.ref }}
|