Skip to content

Commit f78d4a6

Browse files
test with gh actions env
1 parent 42f6080 commit f78d4a6

2 files changed

Lines changed: 16 additions & 0 deletions

File tree

.github/workflows/CodeQuality.yml

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@ jobs:
1313
build:
1414
name: Build
1515
runs-on: ubuntu-latest
16+
env:
17+
# Use cached CRL data only for cert revocation checks. Works around
18+
# NU3012 ("certificate revoked") for transitive ReactiveUI / Splat 19.3.1
19+
# packages whose author certificate (Glenn Watson) was revoked at the CA
20+
# in 2026-Q2. `signatureValidationMode=accept` in NuGet.Config does NOT
21+
# cover this case because it only relaxes the "require signature" check,
22+
# not the chain-validation step that NU3012 fires from. Revert this env
23+
# var once the affected packages are re-signed and re-published.
24+
NUGET_CERT_REVOCATION_MODE: offline
1625
steps:
1726
- uses: actions/checkout@v6.0.2
1827
with:

.github/workflows/codeql-analysis.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,13 @@ jobs:
1111

1212
runs-on: ubuntu-latest
1313

14+
env:
15+
# Use cached CRL data only for cert revocation checks. Works around
16+
# NU3012 ("certificate revoked") for transitive ReactiveUI / Splat 19.3.1
17+
# packages whose author certificate was revoked at the CA in 2026-Q2.
18+
# Revert this env var once the affected packages are re-signed.
19+
NUGET_CERT_REVOCATION_MODE: offline
20+
1421
steps:
1522
- name: Checkout repository
1623
uses: actions/checkout@v6.0.2

0 commit comments

Comments
 (0)