diff options
| author | Linus Färnstrand <linus@mullvad.net> | 2025-03-10 11:42:06 +0100 |
|---|---|---|
| committer | Linus Färnstrand <linus@mullvad.net> | 2025-03-11 09:29:45 +0100 |
| commit | 9b24cd44f17845afb2f22eda34ac32ec6fd0b5bf (patch) | |
| tree | 439011fd126f4deb17b06875904669ab24f5a612 /.github | |
| parent | ee4ad0aaae3fc22bb08e399fcfd6f305d0cc6017 (diff) | |
| download | mullvadvpn-9b24cd44f17845afb2f22eda34ac32ec6fd0b5bf.tar.xz mullvadvpn-9b24cd44f17845afb2f22eda34ac32ec6fd0b5bf.zip | |
Fix bug in nightly osv-scanner CI job
When we patched the CI job to allow checking out git submodules, I
accidentally copy-pasted the wrong workflow yaml file. This made the
nightly scheduled scan use the PR workflow. This workflow does not work
in this setting, and it always just reported green status
Moving back to consuming the workflow from google instead of our fork
again, since the PR with the needed changes have been merged upstream
Diffstat (limited to '.github')
| -rw-r--r-- | .github/workflows/osv-scanner-pr.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/osv-scanner-scheduled.yml | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/osv-scanner-pr.yml b/.github/workflows/osv-scanner-pr.yml index 084896fda4..a2b3bee603 100644 --- a/.github/workflows/osv-scanner-pr.yml +++ b/.github/workflows/osv-scanner-pr.yml @@ -17,6 +17,6 @@ jobs: actions: read # yamllint disable rule:line-length - uses: "mullvad/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@ab8175fc65a74d8c0308f623b1c617a39bdc34fe" # v1.9.0 + uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@ab8175fc65a74d8c0308f623b1c617a39bdc34fe" # v1.9.2 + submodule patch with: checkout-submodules: true diff --git a/.github/workflows/osv-scanner-scheduled.yml b/.github/workflows/osv-scanner-scheduled.yml index a42305db84..cf6a23f92c 100644 --- a/.github/workflows/osv-scanner-scheduled.yml +++ b/.github/workflows/osv-scanner-scheduled.yml @@ -18,6 +18,6 @@ jobs: actions: read # yamllint disable rule:line-length - uses: "mullvad/osv-scanner-action/.github/workflows/osv-scanner-reusable-pr.yml@ab8175fc65a74d8c0308f623b1c617a39bdc34fe" # v1.9.0 + uses: "google/osv-scanner-action/.github/workflows/osv-scanner-reusable.yml@ab8175fc65a74d8c0308f623b1c617a39bdc34fe" # v1.9.2 + submodule patch with: checkout-submodules: true |
