Workflow file for this run
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
name: Update TUF Seeds | ||
on: | ||
workflow_dispatch: | ||
push: | ||
permissions: | ||
contents: read | ||
jobs: | ||
update-tuf-seeds: | ||
runs-on: ubuntu-latest | ||
env: | ||
DEBUG: "tuf:*" | ||
TUF_MIRROR: https://tuf-repo-cdn.sigstore.dev | ||
steps: | ||
- name: Checkout source | ||
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v3 | ||
- name: Setup node | ||
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v3 | ||
with: | ||
node-version: 18 | ||
cache: npm | ||
- name: Install dependencies | ||
run: npm ci | ||
- name: Build sigstore-js | ||
run: npm run build | ||
- name: Init TUF cache | ||
run: sigstore init --cache-path ${{ runner.temp }/tuf --mirror ${TUF_MIRROR} | ||
Check failure on line 29 in .github/workflows/update-tuf-seeds.yml GitHub Actions / Update TUF SeedsInvalid workflow file
|
||
- name: ls | ||
run: tree ${{ runner.temp }} |