From 3b8fbd91cf5aa828f1016b7ef551456800cced40 Mon Sep 17 00:00:00 2001 From: Johannes Frey Date: Fri, 9 Aug 2024 09:42:36 +0200 Subject: [PATCH] chore: change deprecated gh action output syntax --- .github/workflows/release.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 2a41d9f93..0c335088b 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -17,7 +17,7 @@ jobs: - id: get_version run: | RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/v!!p') - echo "::set-output name=release_version::$RELEASE_VERSION" + echo "release_version=$RELEASE_VERSION" >> "$GITHUB_OUTPUT" - name: Set up Go uses: actions/setup-go@v5 with: @@ -46,7 +46,7 @@ jobs: - id: get_version run: | RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p') - echo "::set-output name=release_version::$RELEASE_VERSION" + echo "release_version=$RELEASE_VERSION" >> "$GITHUB_OUTPUT" - name: Get Docker tags id: docker_meta uses: crazy-max/ghaction-docker-meta@v2 @@ -88,7 +88,7 @@ jobs: - id: get_version run: | RELEASE_VERSION=$(echo $GITHUB_REF | sed -nE 's!refs/tags/!!p') - echo "::set-output name=release_version::$RELEASE_VERSION" + echo "release_version=$RELEASE_VERSION" >> "$GITHUB_OUTPUT" - uses: geertvdc/setup-hub@v1.0.0 env: ACTIONS_ALLOW_UNSECURE_COMMANDS: true