Bump the minor-patch group with 3 updates #2192
Workflow file for this run
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: Backward compatibility | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: ['main'] | |
| pull_request: | |
| branches: ['main'] | |
| permissions: | |
| contents: read | |
| jobs: | |
| verify: | |
| name: Verify bundles | |
| runs-on: ubuntu-latest | |
| permissions: | |
| contents: read | |
| id-token: write | |
| steps: | |
| - name: Checkout source | |
| uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v3 | |
| - name: Setup node | |
| uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v3 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install CLI | |
| run: npm install -g @sigstore/cli | |
| - name: Verify bundles | |
| run: | | |
| for FILE in ./tests/bundles/*.sigstore; do | |
| echo "Verifying ${FILE}" | |
| sigstore verify $FILE | |
| done | |