Bump cygwin/cygwin-install-action from 470c3c030f61065323fce2c636d43d5e874a93ff to 389882094a61bf9baf159cd45ce65a05da35d0c2 #185
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: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| tags: | |
| - '[0-9]+.[0-9]+.[0-9]+' | |
| pull_request: | |
| types: [opened, synchronize, reopened] | |
| # Allows to run this workflow manually | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| jobs: | |
| prep-release: | |
| uses: ./.github/workflows/release.yml | |
| permissions: | |
| contents: write | |
| security-events: write | |
| build: | |
| needs: prep-release | |
| uses: ./.github/workflows/build.yml | |
| permissions: | |
| contents: write | |
| security-events: write | |
| with: | |
| release_id: ${{ needs.prep-release.outputs.release_id }} | |
| run: | |
| uses: ./.github/workflows/run.yml | |
| permissions: | |
| contents: read | |
| security-events: write | |
| test: | |
| uses: ./.github/workflows/test.yml | |
| permissions: | |
| contents: read | |
| docs: | |
| uses: ./.github/workflows/docs.yml | |
| permissions: | |
| contents: read |