File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4343 matrix :
4444 # It is recommended to pin a Runner version specifically:
4545 # https://docs.github.com/en/actions/using-github-hosted-runners/about-github-hosted-runners
46- # os: [ubuntu-latest, macos-latest, windows-latest]
47- os : [ubuntu-latest]
46+ os : [ubuntu-latest, macos-latest, windows-latest]
4847 python : ['3.9', '3.10']
4948 steps :
5049
@@ -88,14 +87,13 @@ jobs:
8887 path : .
8988 if-no-files-found : error
9089 retention-days : 1
91- # if: steps.audit-packages.outputs.exit_code == 1
90+ if : steps.audit-packages.outputs.exit_code == 1
9291
9392 # Build the sdist and wheel distribution of the package and docs as a zip file.
9493 # We don't need to check and test the package separately because `make dist` runs
9594 # those targets first and only builds the package if they succeed.
9695 - name : Build the package
9796 run : make dist
98- continue-on-error : true
9997
10098 # Generate the requirements.txt that contains the hash digests of the dependencies and
10199 # generate the SBOM using CyclonDX SBOM generator.
@@ -117,7 +115,6 @@ jobs:
117115 - name : Compute package hash
118116 if : matrix.os == env.ARTIFACT_OS && matrix.python == env.ARTIFACT_PYTHON
119117 id : compute-hash
120- continue-on-error : true
121118 shell : bash
122119 run : |
123120 set -euo pipefail
Original file line number Diff line number Diff line change @@ -28,13 +28,13 @@ jobs:
2828
2929 - name : Download artifact from Build
3030 uses : actions/download-artifact@9782bd6a9848b53b110e712e20e42d89988822b7 # v3
31- # if: steps.audit-packages.outputs.exit_code == 1
31+ if : steps.audit-packages.outputs.exit_code == 1
3232 with :
3333 name : vulnerabilities.txt
3434
3535 - name : comment PR
3636 id : comment-pr
3737 run : gh pr comment ${{ github.event.number }} --body-file vulnerabilities.txt
38- # if: steps.audit-packages.outputs.exit_code == 1
38+ if : steps.audit-packages.outputs.exit_code == 1
3939 env :
4040 GH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments