Skip to content

Commit d60fe32

Browse files
committed
chore: fix set-output warning
1 parent e3c1a72 commit d60fe32

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 yeshan333
3+
Copyright (c) 2021-2023 yeshan333
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

entrypoint.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,14 @@ echo =========================================================================
2727

2828
start_time=$(date)
2929

30-
echo "::set-output name=end_time::$start_time"
30+
echo "{start_time}={start_time}" >> $GITHUB_OUTPUT
3131
echo "Start time of synchronization -> $start_time"
3232

3333
rsync -e "$SSH_COMMAND" $8 -av $5 $1@$2:$6
3434

3535
end_time=$(date)
3636

37-
echo "::set-output name=end_time::$end_time"
37+
echo "{end_time}={end_time}" >> $GITHUB_OUTPUT
3838
echo "End time of synchronization -> $end_time"
3939

4040
echo =========================================================================

0 commit comments

Comments
 (0)