Bump actions/upload-artifact from 6 to 7 #277
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
| --- | |
| # Main build workflow that runs on all pushes | |
| # This workflow calls the reusable build workflow | |
| name: Build | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build and Test | |
| # Permissions for this job | |
| permissions: | |
| actions: read # To read actions for CodeQL | |
| contents: read # To read repository contents | |
| pull-requests: write # To write pull requests analysis | |
| security-events: write # To write security events for CodeQL | |
| uses: ./.github/workflows/build.yaml | |
| with: | |
| version: 0.0.0-run.${{ github.run_number }} | |
| secrets: | |
| SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }} |