Skip to content

Commit e6c1fd0

Browse files
committed
Clarify ESM migration details in README for V7
1 parent 56f297c commit e6c1fd0

2 files changed

Lines changed: 8 additions & 2 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ This action provides the following functionality for GitHub Actions users:
1212
- Registering problem matchers for error output
1313
## Breaking changes in V7
1414

15-
- **Migrated to ESM** to enable support for the latest `@actions/*` package versions.
15+
- Migrated action internals to ESM for compatibility with latest `@actions/*` packages. No changes to action inputs, outputs, or behavior.
1616

1717
## Breaking changes in V6
1818

dist/setup/index.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -98317,7 +98317,13 @@ async function installPython(workingDirectory) {
9831798317
info(data.toString().trim());
9831898318
},
9831998319
stderr: (data) => {
98320-
core_error(data.toString().trim());
98320+
const msg = data.toString().trim();
98321+
if (/^WARNING:/im.test(msg)) {
98322+
warning(msg);
98323+
}
98324+
else {
98325+
core_error(msg);
98326+
}
9832198327
}
9832298328
}
9832398329
};

0 commit comments

Comments
 (0)