Skip to content

Commit 563de01

Browse files
feat: rebased the main branch
1 parent 3f6eff9 commit 563de01

2 files changed

Lines changed: 4 additions & 7 deletions

File tree

.github/workflows/build.yaml

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,7 @@ jobs:
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

.github/workflows/pr-change-set.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 }}

0 commit comments

Comments
 (0)