From e20b544cfaad0862cc5db25e65766dd139eedbef Mon Sep 17 00:00:00 2001 From: Elliott Kember Date: Thu, 20 Jul 2023 08:48:25 -0700 Subject: [PATCH] Update package.json The `@actions/core` package has been updated to squash this warning: > 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/ Notes: > Action authors who are using the toolkit should update the @actions/core package to v1.10.0 or greater to get the updated saveState and setOutput functions. https://github.com/actions/toolkit/blob/main/packages/core/RELEASES.md > ### 1.10.0 > - `saveState` and `setOutput` now use environment files if available [#1178](https://github.com/actions/toolkit/pull/1178) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ff11b8d..1d1bfbc 100644 --- a/package.json +++ b/package.json @@ -23,6 +23,6 @@ }, "homepage": "https://github.com/petehouston/github-actions-query-branch-name#readme", "dependencies": { - "@actions/core": "^1.2.7" + "@actions/core": "^1.10.0" } }