Skip to content

Bump the minor-patch group across 1 directory with 6 updates (#1569) #2388

Bump the minor-patch group across 1 directory with 6 updates (#1569)

Bump the minor-patch group across 1 directory with 6 updates (#1569) #2388

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@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v3
- name: Setup node
uses: actions/setup-node@6044e13b5dc448c55e2357c09f80417699197238 # 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