Skip to content

Commit

Permalink
Merge pull request #2 from bobcallaway/so
Browse files Browse the repository at this point in the history
fix deprecated set-output
  • Loading branch information
bobcallaway authored Oct 21, 2022
2 parents 4d7dfbc + 0063772 commit 21f2362
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ jobs:
id: cache-setup
run: |
mkdir -p "$HOME"/.cache/xml2rfc
echo "::set-output name=path::$HOME/.cache/xml2rfc"
date -u "+::set-output name=date::%FT%T"
echo "path=$HOME/.cache/xml2rfc" >> $GITHUB_OUTPUT
date -u "+date=%FT%T" >> $GITHUB_OUTPUT
- name: "Cache References"
uses: actions/cache@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
id: cache-setup
run: |
mkdir -p "$HOME"/.cache/xml2rfc
echo "::set-output name=path::$HOME/.cache/xml2rfc"
date -u "+::set-output name=date::%FT%T"
echo "path=$HOME/.cache/xml2rfc" >> $GITHUB_OUTPUT
date -u "+date=%FT%T" >> $GITHUB_OUTPUT
- name: "Cache References"
uses: actions/cache@v2
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/setup.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
echo "Commit the changes to the 'main' branch."
echo
echo "============================================================="
echo "::set-output name=skip::true"
echo "skip=true" >> $GITHUB_OUTPUT
elif [ ! -f draft-todo-yourname-protocol.md -a -f Makefile ]; then
echo "============================================================="
echo "Skipping setup for an already-configured repository."
Expand All @@ -37,7 +37,7 @@ jobs:
echo " https://github.com/${{github.repository}}/delete/main/.github/workflows/setup.yml"
echo
echo "============================================================="
echo "::set-output name=skip::true"
echo "skip=true" >> $GITHUB_OUTPUT
fi
- name: "Git Config"
Expand Down

0 comments on commit 21f2362

Please sign in to comment.