Bump sigstore/cosign-installer from 4.0.0 to 4.1.1; Always use latest version of cosign; Wait 30s between signing and verifying signature #5096
Workflow file for this run
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: Developers environment checks | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: # All | |
| push: | |
| branches: | |
| - main | |
| jobs: | |
| windows: | |
| name: Clone on Windows | |
| runs-on: windows-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Checkout on Windows | |
| run: echo "Project successfully cloned on ${{ runner.os }}. See `Set up Job` stage for more details about the Runner." | |
| macos: | |
| name: Clone on Mac | |
| runs-on: macos-latest | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Checkout on Mac | |
| run: echo "Project successfully cloned on ${{ runner.os }}. See `Set up Job` stage for more details about the Runner." |