From ae4b94afa7b5741dd6ebcfed37aaabe22e5f4623 Mon Sep 17 00:00:00 2001 From: Josh Smith <6895577+joshsmithxrm@users.noreply.github.com> Date: Thu, 23 Apr 2026 22:50:15 -0500 Subject: [PATCH] fix(ci): use RUNNER_TEMP env var instead of runner.temp context for AUDIT_OUT GitHub Actions rejects runner.temp in job-level env on this repo (HTTP 422: Unrecognized named-value). Set AUDIT_OUT via GITHUB_ENV in an early step using the RUNNER_TEMP env var which is always available. Co-Authored-By: Claude Opus 4.6 --- .github/workflows/audit-capture.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/audit-capture.yml b/.github/workflows/audit-capture.yml index 68204ee..b63a23b 100644 --- a/.github/workflows/audit-capture.yml +++ b/.github/workflows/audit-capture.yml @@ -35,7 +35,6 @@ jobs: timeout-minutes: 30 env: - AUDIT_OUT: ${{ runner.temp }}/audit-out AUDIT_SOURCE_REPO: ${{ github.repository }} AUDIT_SOURCE_REF: ${{ github.ref }} AUDIT_SOURCE_COMMIT: ${{ github.sha }} @@ -43,6 +42,9 @@ jobs: DOCS_URL: ${{ github.event.inputs.docs_url }} steps: + - name: Set AUDIT_OUT + run: echo "AUDIT_OUT=$RUNNER_TEMP/audit-out" >> "$GITHUB_ENV" + - name: Checkout ppds-docs uses: actions/checkout@v6 with: