You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2022/10/13 07:17:12 UTC

[camel] branch main updated: (chores) ci: save-output has been deprecated

This is an automated email from the ASF dual-hosted git repository.

orpiske pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/main by this push:
     new aea196b3c09 (chores) ci: save-output has been deprecated
aea196b3c09 is described below

commit aea196b3c0992649364583f8256f3f7fc36ee697
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Thu Oct 13 09:16:40 2022 +0200

    (chores) ci: save-output has been deprecated
    
    Github actions have deprecated the use of set-output. As such, the recommendation is to use the new GITHUB_OUTPUT variabble.
    
    Reference: https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
---
 .github/actions/install-mvnd/action.yml | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/.github/actions/install-mvnd/action.yml b/.github/actions/install-mvnd/action.yml
index 85010d66b4f..4961c6f0652 100644
--- a/.github/actions/install-mvnd/action.yml
+++ b/.github/actions/install-mvnd/action.yml
@@ -39,5 +39,5 @@ runs:
     - run: unzip mvnd.zip -d /tmp/
       shell: bash
     - id: mvnd-location
-      run: echo "::set-output name=mvnd-dir::/tmp/maven-mvnd-${{ inputs.version }}-linux-amd64/bin"
+      run: echo "mvnd-dir=/tmp/maven-mvnd-${{ inputs.version }}-linux-amd64/bin" >> $GITHUB_OUTPUT
       shell: bash