Update github/codeql-action digest to 0499de3 #1037
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: Build | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| - "feature/**" | |
| - "release/**" | |
| - "hotfix/**" | |
| tags: | |
| - "*" | |
| paths-ignore: | |
| - "README.md" | |
| pull_request: | |
| jobs: | |
| build: | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ ubuntu-22.04, windows-2022, macos-13 ] | |
| env: | |
| AZURE_PASSWORD: ${{ secrets.AZURE_PASSWORD }} | |
| AZURE_SOURCE: ${{ secrets.AZURE_SOURCE }} | |
| AZURE_USER: ${{ secrets.AZURE_USER }} | |
| COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }} | |
| GITHUB_PAT: ${{ secrets.GH_TOKEN }} | |
| GITTER_ROOM_ID: ${{ secrets.GITTER_ROOM_ID }} | |
| GITTER_TOKEN: ${{ secrets.GITTER_TOKEN }} | |
| GPR_PASSWORD: ${{ secrets.GPR_PASSWORD }} | |
| GPR_SOURCE: ${{ secrets.GPR_SOURCE }} | |
| GPR_USER: ${{ secrets.GPR_USER }} | |
| NUGET_API_KEY: ${{ secrets.NUGET_API_KEY }} | |
| NUGET_SOURCE: "https://api.nuget.org/v3/index.json" | |
| TWITTER_ACCESS_TOKEN: ${{ secrets.TWITTER_ACCESS_TOKEN }} | |
| TWITTER_ACCESS_TOKEN_SECRET: ${{ secrets.TWITTER_ACCESS_TOKEN_SECRET }} | |
| TWITTER_CONSUMER_KEY: ${{ secrets.TWITTER_CONSUMER_KEY }} | |
| TWITTER_CONSUMER_SECRET: ${{ secrets.TWITTER_CONSUMER_SECRET }} | |
| WYAM_ACCESS_TOKEN: ${{ secrets.WYAM_ACCESS_TOKEN }} | |
| WYAM_DEPLOY_BRANCH: "gh-pages" | |
| WYAM_DEPLOY_REMOTE: ${{ github.event.repository.html_url }} | |
| steps: | |
| - name: Checkout the repository | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Fetch all tags and branches | |
| run: git fetch --prune --unshallow | |
| - uses: actions/setup-dotnet@87b7050bc53ea08284295505d98d2aa94301e852 # v4.2.0 | |
| with: | |
| # codecov needs 2.1 | |
| # unittests needs 3.1 | |
| # gitversion needs 5.0 | |
| # cake 1.3 needs 6.0 | |
| # .NET 9 to build | |
| dotnet-version: | | |
| 2.1 | |
| 3.1 | |
| 5.0 | |
| 6.0 | |
| 9.0 | |
| - name: Cache Tools | |
| uses: actions/cache@1bd1e32a3bdc45362d1e726936510720a7c30a57 # v4 | |
| with: | |
| path: tools | |
| key: ${{ runner.os }}-tools-${{ hashFiles('recipe.cake') }} | |
| - name: Build project | |
| uses: cake-build/cake-action@a6eb054329257c9e70a6c6bf01747ad6e1d9d52b # v1 | |
| with: | |
| script-path: recipe.cake | |
| target: CI | |
| cake-version: 1.3.0 | |
| # currently, Cake.Recipe does not upload artifacts when run on gh-actions | |
| - name: Upload Issues | |
| uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4 | |
| with: | |
| if-no-files-found: warn | |
| name: ${{ matrix.os }} Issues | |
| path: | | |
| BuildArtifacts/report.html | |
| BuildArtifacts/**/coverlet/*.xml | |
| - name: Upload Packages | |
| uses: actions/upload-artifact@6f51ac03b9356f520e9adb1b1b7802705f340c2b # v4 | |
| if: runner.os == 'Windows' | |
| with: | |
| if-no-files-found: warn | |
| name: package | |
| path: BuildArtifacts/Packages/**/* |