From 600ab3222ca25e2de5113a0f415b8111d01a878d Mon Sep 17 00:00:00 2001 From: Paul Pacheco Date: Thu, 13 Oct 2022 13:02:23 -0500 Subject: [PATCH] update actions core to 1.10.0 The current version of actions/core produces a lot of warning about deprecated set-output command, like this: ``` The `set-output` command is deprecated and will be disabled soon. Please upgrade to using Environment Files. For more information see: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ ``` the new version of actions/core uses the environment files instead, so this version bump should fix the warning --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 3b83cc4b..dbb87ef5 100644 --- a/package.json +++ b/package.json @@ -25,7 +25,7 @@ "test-i-k8s": "cross-env cloudRunnerTests=true cloudRunnerCluster=k8s yarn test -i -t \"cloud runner\"" }, "dependencies": { - "@actions/core": "^1.9.1", + "@actions/core": "^1.10.0", "@actions/exec": "^1.1.0", "@actions/github": "^5.0.0", "@kubernetes/client-node": "^0.16.3",