Docs: edit-this-page link #1069
ci.yml
on: push
Changelog Summary
1m 56s
Antora Docs
1m 39s
Matrix: build
Annotations
10 errors and 15 warnings
|
MSVC 14.34: C++20 (shared)
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\b2-workflow\src\index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\b2-workflow\src\index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\common\action-schema\src\runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\common\action-schema\src\runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
GCC 13: C++20 (coverage)
CMake Workflow failed: CMake build failed with exit code 2
Stack trace:
at processEntry
../../_actions/alandefreitas/cpp-actions/v1.9.3/cmake-workflow/src/index.ts:465:23
460 │ });
461 │ if (entry.create_annotations) {
462 │ createCMakeBuildAnnotations(stdout, entry);
463 │ }
464 │ if (exitCode !== 0) {
❯ 465 │ throw new Error(`CMake build failed with exit code ${exitCode}`);
466 │ }
467 │ }
468 │ }
469 │ core.endGroup();
470 │
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/cmake-workflow/src/index.ts:941:9
936 │ // Process each entry
937 │ // ==============================================
938 │ for (const entry of entries) {
939 │ const desc = makeFactorDescription(entry);
940 │ core.startGroup(`🧩 Processing: ${desc}`);
❯ 941 │ await processEntry(entry, setupCMakeOutputs, resolvedParams);
942 │ core.endGroup();
943 │ }
944 │ }
945 │
946 │ /**
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/cmake-workflow/src/index.ts:955:9
950 │ inputsSchema,
951 │ outputsSchema,
952 │ title: 'CMake Workflow',
953 │ main: async (rawInputs: RawInputs) => {
954 │ const inputs = convertRawInputs(rawInputs);
❯ 955 │ await main(inputs);
956 │ return {};
957 │ },
958 │ callerModule: module
959 │ });
960 │
at run
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
Clang 20: C++20-23
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
MSVC 14.42: C++20
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\b2-workflow\src\index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\b2-workflow\src\index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\common\action-schema\src\runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\common\action-schema\src\runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
MinGW: C++20
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\b2-workflow\src\index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\b2-workflow\src\index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\common\action-schema\src\runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
..\..\_actions\alandefreitas\cpp-actions\v1.9.3\common\action-schema\src\runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
Clang 17: C++20
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
Clang 20: C++20-23 (x86)
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
Clang 20: C++20 (asan+ubsan)
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
GCC 15: C++20
Boost Clone failed: The process '/usr/bin/git' failed with exit code 128
Stack trace:
at UI._setResult
../../_actions/alandefreitas/cpp-actions/v1.9.3/node_modules/@actions/exec/src/toolrunner.ts:662:17
at UI.CheckComplete
../../_actions/alandefreitas/cpp-actions/v1.9.3/node_modules/@actions/exec/src/toolrunner.ts:643:12
at ChildProcess.<anonymous>
../../_actions/alandefreitas/cpp-actions/v1.9.3/node_modules/@actions/exec/src/toolrunner.ts:516:15
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
GCC 15: C++20 (asan+ubsan)
B2 Workflow failed: B2 build failed with exit code 1
Stack trace:
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:318:19
313 │ const { exitCode } = await exec.getExecOutput(`"${b2_path}"`, b2_args, {
314 │ cwd: inputs.source_dir,
315 │ ignoreReturnCode: true
316 │ });
317 │ if (exitCode !== 0) {
❯ 318 │ throw new Error(`B2 build failed with exit code ${exitCode}`);
319 │ }
320 │ }
321 │ core.endGroup();
322 │ }
323 │
at main
../../_actions/alandefreitas/cpp-actions/v1.9.3/b2-workflow/src/index.ts:417:9
412 │ inputsSchema,
413 │ outputsSchema,
414 │ title: 'B2 Workflow',
415 │ main: async (rawInputs: RawInputs) => {
416 │ const inputs = convertRawInputs(rawInputs);
❯ 417 │ await main(inputs);
418 │ return {};
419 │ },
420 │ callerModule: module
421 │ });
422 │
at run
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:81:25
76 │ core.startGroup('📥 Action Inputs');
77 │ gh_inputs.printInputObject(inputs as unknown as Record<string, unknown>);
78 │ core.endGroup();
79 │
80 │ // Run main action logic
❯ 81 │ const outputs = await main(inputs);
82 │
83 │ // Validate outputs if validator provided
84 │ if (validateOutputs && !validateOutputs(outputs)) {
85 │ core.setFailed(failureMessage ?? `${title} failed: output validation failed`);
86 │ return;
at anonymous
../../_actions/alandefreitas/cpp-actions/v1.9.3/common/action-schema/src/runner.ts:162:13
157 │
158 │ const run = createActionRunner({ ...runnerOptions, title });
159 │
160 │ (async () => {
161 │ try {
❯ 162 │ await run();
163 │ } catch (error) {
164 │ await reportAndSetFailed(error as Error, {
165 │ title: `${title} failed`
166 │ });
167 │ }
⚠ Tip: enable trace-commands (INPUT_TRACE_COMMANDS=true) for more logs.
|
|
Changelog Summary
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/create-changelog@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Conventional Commits
95 unconventional commits
|
|
MSVC 14.34: C++20 (shared)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
MSVC 14.34: C++20 (shared)
Requested toolset version '14.34' not found. Available versions: [14.29.30133, 14.44.35207]. Falling back to Visual Studio default.
|
|
GCC 13: C++20 (coverage)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/cmake-workflow@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Clang 20: C++20-23
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Antora Docs
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, actions/setup-node@v4, actions/upload-artifact@v4, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
MSVC 14.42: C++20
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
MSVC 14.42: C++20
Requested toolset version '14.42' not found. Available versions: [14.29.30133, 14.44.35207]. Falling back to Visual Studio default.
|
|
MinGW: C++20
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Clang 17: C++20
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Clang 20: C++20-23 (x86)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
Clang 20: C++20 (asan+ubsan)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
GCC 15: C++20
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
|
GCC 15: C++20 (asan+ubsan)
Node.js 20 actions are deprecated. The following actions are running on Node.js 20 and may not work as expected: actions/checkout@v4, alandefreitas/cpp-actions/b2-workflow@v1.9.3, alandefreitas/cpp-actions/boost-clone@v1.9.3, alandefreitas/cpp-actions/package-install@v1.9.3, alandefreitas/cpp-actions/setup-cpp@v1.9.3. Actions will be forced to run with Node.js 24 by default starting June 2nd, 2026. Node.js 20 will be removed from the runner on September 16th, 2026. Please check if updated versions of these actions are available that support Node.js 24. To opt into Node.js 24 now, set the FORCE_JAVASCRIPT_ACTIONS_TO_NODE24=true environment variable on the runner or in your workflow file. Once Node.js 24 becomes the default, you can temporarily opt out by setting ACTIONS_ALLOW_USE_UNSECURE_NODE_VERSION=true. For more information see: https://github.blog/changelog/2025-09-19-deprecation-of-node-20-on-github-actions-runners/
|
Artifacts
Produced during runtime
| Name | Size | Digest | |
|---|---|---|---|
|
antora-docs
|
8.31 MB |
sha256:2bf915ae75f9c6b7450b1379963eeb3b7dbb40626f6855b758ae5043a162c460
|
|