@biffo/cli 0.234.0 → 0.234.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -18,7 +18,9 @@ jobs:
18
18
  # repos — the analysis runs but the SARIF upload fails without it. So this
19
19
  # is opt-in: enable GHAS on the repo, then set the repo variable
20
20
  # ENABLE_CODE_SCANNING=true. Left dormant (not failing) otherwise.
21
- if: vars.ENABLE_CODE_SCANNING == 'true'
21
+ # See biffo-template's codeql.yml for the full reasoning (#1214): a public
22
+ # repo can scan for free, so it does; a private one still needs the opt-in.
23
+ if: github.event.repository.private == false || vars.ENABLE_CODE_SCANNING == 'true'
22
24
  timeout-minutes: 15
23
25
  permissions:
24
26
  # Required for CodeQL to upload SARIF results.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@biffo/cli",
3
- "version": "0.234.0",
3
+ "version": "0.234.1",
4
4
  "description": "Biffo project scaffolding CLI",
5
5
  "license": "MIT",
6
6
  "type": "module",