Bump actions/setup-go from 5.0.0 to 5.1.0 #42
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: Record change to non-main branch | |
on: | |
push: | |
branches-ignore: | |
- '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@5c0fb4a2a0dc9434598cf2e74bb601d76861fc97 | |
- name: Install gitsign | |
uses: chainguard-dev/actions/setup-gitsign@main | |
- name: Checkout repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 | |
with: | |
fetch-depth: 0 | |
- name: Update RSL | |
run: | | |
git fetch origin refs/gittuf/reference-state-log:refs/gittuf/reference-state-log | |
gittuf rsl record ${{ github.ref }} | |
git push origin refs/gittuf/reference-state-log:refs/gittuf/reference-state-log |