-
Notifications
You must be signed in to change notification settings - Fork 140
ci: use a newer github-script
version
#1387
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
cc88a32
to
dcae3f9
Compare
The old version we currently use runs in node.js v12.x, which is being deprecated in GitHub Actions. The new version uses node.js v16.x. Incidentally, this also avoids the warning about the deprecated `::set-output::` workflow command because the newer version of the `github-script` Action uses the recommended new way to specify outputs. Signed-off-by: Johannes Schindelin <[email protected]>
dcae3f9
to
1b933c2
Compare
/submit |
Submitted as [email protected] To fetch this version into
To fetch this version to local tag
|
On the Git mailing list, Taylor Blau wrote (reply to this): On Tue, Nov 08, 2022 at 10:13:28AM +0000, Johannes Schindelin via GitGitGadget wrote:
> From: Johannes Schindelin <[email protected]>
>
> The old version we currently use runs in node.js v12.x, which is being
> deprecated in GitHub Actions. The new version uses node.js v16.x.
>
> Incidentally, this also avoids the warning about the deprecated
> `::set-output::` workflow command because the newer version of the
> `github-script` Action uses the recommended new way to specify outputs.
Thanks for working on this.
I also appreciate you taking a more minimal approach by avoiding
touching the explicit "echo ::set-output::"'s throughout the workflow
definition, since there is other work going on there.
So let's merge this one down, let the dust settle on the other topic,
and then come back and remove the remaining ::set-output::'s later on.
Thanks,
Taylor |
User |
This branch is now known as |
This patch series was integrated into seen via git@cefc455. |
This patch series was integrated into next via git@5530624. |
This patch series was integrated into seen via git@c08655a. |
This patch series was integrated into seen via git@69eb1be. |
This patch series was integrated into master via git@69eb1be. |
This patch series was integrated into next via git@69eb1be. |
Closed via 69eb1be. |
I had a look at the CI run of
seen
a couple of weeks ago and saw not only quite a number of failures but also quite a number of warnings.This patch addresses a few of them, including the ones about using the deprecated
::set-output::
workflow command.Similar warnings will be addressed by
od/ci-use-checkout-v3-when-applicable
.cc: Taylor Blau [email protected]