Skip to content

Commit c52b3f2

Browse files
committed
use correct info command
1 parent f6ec996 commit c52b3f2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ const wait = __webpack_require__(949);
6060
// most @actions toolkit packages have async methods
6161
async function run() {
6262
try {
63-
core.log("::save-state name=test::TestValue")
63+
core.info("::save-state name=test::TestValue")
6464
}
6565
catch (error) {
6666
core.setFailed(error.message);

index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ const wait = require('./wait');
55
// most @actions toolkit packages have async methods
66
async function run() {
77
try {
8-
core.log("::save-state name=test::TestValue")
8+
core.info("::save-state name=test::TestValue")
99
}
1010
catch (error) {
1111
core.setFailed(error.message);

0 commit comments

Comments
 (0)