Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion setup/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ inputs:
description: 'Destination directory for activation files (default: ${RUNNER_TEMP}/gh-aw/actions)'
required: false
safe-output-artifact-client:
description: 'Install @actions/artifact so upload_artifact.cjs can upload GitHub Actions artifacts via REST API directly'
description: 'Deprecated no-op (artifact support is now built into setup action scripts)'
required: false
default: 'false'
job-name:
Expand Down
2 changes: 0 additions & 2 deletions setup/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ const setupStartMs = Date.now();
// runner versions preserve the original hyphen form. getActionInput() handles
// both forms automatically.
const safeOutputCustomTokens = getActionInput("SAFE_OUTPUT_CUSTOM_TOKENS") || "false";
const safeOutputArtifactClient = getActionInput("SAFE_OUTPUT_ARTIFACT_CLIENT") || "false";
const inputTraceId = getActionInput("TRACE_ID");
const inputParentSpanId = getActionInput("PARENT_SPAN_ID");
const inputJobName = getActionInput("JOB_NAME");
Expand All @@ -22,7 +21,6 @@ const result = spawnSync(path.join(__dirname, "setup.sh"), [], {
stdio: "inherit",
env: Object.assign({}, process.env, {
INPUT_SAFE_OUTPUT_CUSTOM_TOKENS: safeOutputCustomTokens,
INPUT_SAFE_OUTPUT_ARTIFACT_CLIENT: safeOutputArtifactClient,
INPUT_TRACE_ID: inputTraceId,
INPUT_PARENT_SPAN_ID: inputParentSpanId,
INPUT_JOB_NAME: inputJobName,
Expand Down
Loading
Loading