From 3492892cd2e6c7c83d9ba59cc089216e58eb31f9 Mon Sep 17 00:00:00 2001 From: Evgenii Alekseev Date: Wed, 8 Jul 2026 15:01:06 +0300 Subject: [PATCH] build: replace deprecated ::set-output with GITHUB_OUTPUT --- .github/workflows/docker.yml | 2 +- .github/workflows/release.yml | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/docker.yml b/.github/workflows/docker.yml index 7536e4dd..b988537c 100644 --- a/.github/workflows/docker.yml +++ b/.github/workflows/docker.yml @@ -28,7 +28,7 @@ jobs: - name: Set image date id: args - run: echo "::set-output name=date::$(date -d yesterday +'%Y-%m-%d')" + run: echo "date=$(date -d yesterday +'%Y-%m-%d')" >> "$GITHUB_OUTPUT" - name: Login to docker hub uses: docker/login-action@v3 diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 50775c54..1a752e0b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -26,7 +26,7 @@ jobs: - name: Extract version id: version - run: echo ::set-output name=VERSION::${GITHUB_REF#refs/tags/} + run: echo "version=${GITHUB_REF#refs/tags/}" >> "$GITHUB_OUTPUT" - name: Create changelog id: changelog @@ -38,7 +38,7 @@ jobs: - name: Create archive run: tox -e archive env: - VERSION: ${{ steps.version.outputs.VERSION }} + VERSION: ${{ steps.version.outputs.version }} - name: Publish release uses: softprops/action-gh-release@v2