From 76f7e8b548abceb386581488528a97719afc9b38 Mon Sep 17 00:00:00 2001 From: Chris Sidi Date: Mon, 3 Feb 2025 10:58:08 -0500 Subject: [PATCH] Switch to new set-output syntax https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/ --- .github/workflows/static.yml | 4 ++-- .github/workflows/update-feed.yml | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/static.yml b/.github/workflows/static.yml index 5c756c4..e9a582a 100644 --- a/.github/workflows/static.yml +++ b/.github/workflows/static.yml @@ -3,8 +3,8 @@ name: Deploy static content to Pages on: # Runs on pushes targeting the default branch - push: - branches: ["main"] + # push: + # branches: ["main"] # Allows you to run this workflow manually from the Actions tab workflow_dispatch: diff --git a/.github/workflows/update-feed.yml b/.github/workflows/update-feed.yml index a985113..dcfc48a 100644 --- a/.github/workflows/update-feed.yml +++ b/.github/workflows/update-feed.yml @@ -53,7 +53,7 @@ jobs: run: | # Set `git-status` so we can skip the step below if the workspace is clean. git status - echo ::set-output name=git-status::`git status --porcelain` + echo "git-status=`git status --porcelain`" >> $GITHUB_OUTPUT - name: "Commit and push changes" if: steps.dirty-skeleton-check.outputs.git-status != ''