From 10c38cfb9e372e8a9dc9c7a5e09309d04dfcfa26 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arne=20J=C3=B8rgensen?= Date: Sat, 16 Dec 2023 22:40:15 +0100 Subject: [PATCH] Fix deptrecated use of set-output in GitHub Action workflow See https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 609c7d2..d51beb1 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -16,7 +16,7 @@ jobs: - uses: actions/checkout@v4 - uses: arnested/go-version-action@v1 id: version - - run: echo ::set-output name=go-runtime::$(echo -n go${{ steps.version.outputs.go-mod-version }} | tr -d '.') + - run: echo name=go-runtime::$(echo -n go${{ steps.version.outputs.go-mod-version }} | tr -d '.') >> $GITHUB_OUTPUT id: runtime - uses: google-github-actions/auth@v2 with: