From 5aed9f213d7d86cdb94a2f57bd6e8326cea2f27a Mon Sep 17 00:00:00 2001 From: Sheargrub Date: Mon, 2 Jun 2025 13:02:29 -0500 Subject: [PATCH] Replace deprecated set-output call Per 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 a5121b1d..da29e59b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -15,7 +15,7 @@ jobs: uses: actions/checkout@v3 - name: Get release notes id: release_notes - run: echo ::set-output name=notes::$(git log -1 --pretty=format:"%b") + run: echo "notes=$(git log -1 --pretty=format:"%b")" >> $GITHUB_OUTPUT - name: Create Release id: create_release uses: actions/create-release@v1