downgrade go to 1.23 (#55) #40
This file contains hidden or 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: Attest to this repo's source | |
| on: | |
| push: | |
| branches: [ "main" ] | |
| # TODO: Remove workflow_dispatch so that we only create VSAs for protected branches | |
| # contemporaneously to the change. (And probably really check in | |
| # create_slsa_source_vsa.yml). | |
| workflow_dispatch: | |
| jobs: | |
| # Whenever new source is pushed or a PR is received, create a new vsa | |
| check-change: | |
| permissions: | |
| contents: write # needed for storing the vsa in the repo. | |
| id-token: write | |
| # TODO: Can we make this work for forks too? | |
| uses: slsa-framework/slsa-source-poc/.github/workflows/create_slsa_source_vsa.yml@main |