From 1cf85a20690c3ac80e6eeeac4394a4c30b7778dc Mon Sep 17 00:00:00 2001 From: Scott Andrews Date: Fri, 4 Sep 2026 19:07:06 -0400 Subject: [PATCH] Avoid github actions deprecations Refs https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ Signed-off-by: Scott Andrews --- .github/workflows/ci.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml index e0d1cb6..472364b 100644 --- a/.github/workflows/ci.yaml +++ b/.github/workflows/ci.yaml @@ -77,11 +77,11 @@ jobs: run: tar -xvf components.tar -C lib - name: Get interface version id: interface_version - run: echo ::set-output name=VERSION::$( wasm-tools component wit lib/interface.wasm --json | jq -r '.packages[0].name' | cut -d'@' -f2 )} + run: echo "VERSION=$( wasm-tools component wit lib/interface.wasm --json | jq -r '.packages[0].name' | cut -d'@' -f2 )" >> $GITHUB_OUTPUT - name: Get tag version if: startsWith(github.ref, 'refs/tags/') id: tag_version - run: echo ::set-output name=VERSION::${GITHUB_REF/refs\/tags\//} + run: echo "VERSION=${GITHUB_REF/refs\/tags\//}" >> $GITHUB_OUTPUT - name: Login to GitHub Container Registry uses: docker/login-action@v4 with: