Bump google.golang.org/protobuf from 1.34.0 to 1.34.1 (#34) #4
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: Record change to main branch | |
on: | |
push: | |
branches: | |
- 'main' | |
jobs: | |
create-rsl-entry: | |
if: github.repository == 'in-toto/attestation-verifier' | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
id-token: write | |
steps: | |
- name: Install gittuf | |
uses: gittuf/gittuf-installer@8ce8fbd070477ec72678151e82b82c3d866d9fcd | |
with: | |
gittuf-version: main | |
- name: Install gitsign | |
uses: actions-go/go-install@0607b3e7a61b8f1b55e1169a884804d084db73af | |
with: | |
module: github.com/sigstore/gitsign@main | |
- name: Checkout repository | |
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b | |
with: | |
fetch-depth: 0 | |
- name: Update RSL | |
env: | |
KEY: ${{ secrets.KEY }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
git config --global commit.gpgsign true # Sign all commits | |
git config --global gpg.x509.program gitsign # Use gitsign for signing | |
git config --global gpg.format x509 # gitsign expects x509 args | |
git config --global user.name "${{ github.workflow }}" | |
git config --global user.email "41898282+github-actions[bot]@users.noreply.github.com" | |
gittuf_key_path="/tmp/gittuf-key" | |
echo "$KEY" > $gittuf_key_path | |
git fetch origin refs/gittuf/reference-state-log:refs/gittuf/reference-state-log refs/gittuf/attestations:refs/gittuf/attestations | |
GITTUF_DEV=1 gittuf dev attest-github --signing-key $gittuf_key_path --repository ${{ github.repository }} --commit ${{ github.sha }} --base-branch "main" | |
gittuf rsl record main | |
git push origin refs/gittuf/reference-state-log:refs/gittuf/reference-state-log refs/gittuf/attestations:refs/gittuf/attestations |