From 220b8adff1db52a7caeb1fb1a78e338fca68210f Mon Sep 17 00:00:00 2001 From: Alexandre Alapetite Date: Thu, 14 Mar 2024 23:02:58 +0100 Subject: [PATCH] Fix deprecated GitHub Actions (#220) fix https://github.com/FreshRSS/Extensions/issues/219 https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/generate.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/generate.yml b/.github/workflows/generate.yml index 3f70d3e..ef34e30 100644 --- a/.github/workflows/generate.yml +++ b/.github/workflows/generate.yml @@ -27,7 +27,7 @@ jobs: id: diff run: | DIFF=$(git diff --numstat -- $FILE | wc -l) - echo "::set-output name=DIFF::$DIFF" + echo "DIFF=$DIFF" >> $GITHUB_OUTPUT - name: Commit changes run: |