Update attest-mock digest to 173a5d1 #5386
This file contains hidden or 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
| name: check-opte-ver | |
| on: | |
| pull_request: | |
| paths: | |
| - '.github/workflows/check-opte-ver.yml' | |
| - 'Cargo.toml' | |
| - 'tools/opte_version' | |
| jobs: | |
| check-opte-ver: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 | |
| with: | |
| ref: ${{ github.event.pull_request.head.sha }} # see omicron#4461 | |
| - name: Install jq | |
| run: sudo apt-get install -y jq | |
| - name: Install toml-cli | |
| run: cargo install [email protected] | |
| - name: Check OPTE version and rev match | |
| run: ./tools/ci_check_opte_ver.sh |