Skip to content
name: Update TUF Seeds
on:
workflow_dispatch:
push:
permissions:
contents: read
jobs:
update-tuf-seeds:
runs-on: ubuntu-latest
env:
DEBUG: "tuf:*"
TUF_CACHE_PATH: ${{ runner.temp }}/tuf

Check failure on line 15 in .github/workflows/update-tuf-seeds.yml

View workflow run for this annotation

GitHub Actions / Update TUF Seeds

Invalid workflow file

The workflow is not valid. .github/workflows/update-tuf-seeds.yml (Line: 15, Col: 23): Unrecognized named-value: 'runner'. Located at position 1 within expression: runner.temp
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 ${TUF_CACHE_PATH} --mirror ${TUF_MIRROR}
- name: ls
run: tree ${TUF_CACHE_PATH}