Skip to content

Commit

Permalink
Update tld-update.yml
Browse files Browse the repository at this point in the history
Replace deprecated set-output
  • Loading branch information
weppos authored Jan 30, 2023
1 parent 705cc05 commit 24abe13
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tld-update.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:

- name: Set current date
id: get-date
run: echo "::set-output name=now::$(date +'%Y-%m-%dT%H:%M:%S %Z')"
run: echo "NOW=$(date +'%Y-%m-%dT%H:%M:%S %Z')" >> $GITHUB_OUTPUT

- name: Run patchnewgtlds
run: tools/patchnewgtlds
Expand All @@ -33,7 +33,7 @@ jobs:
id: cpr
uses: peter-evans/create-pull-request@v4
with:
commit-message: "util: gTLD data autopull updates for ${{ steps.get-date.outputs.now }}"
commit-message: "util: gTLD data autopull updates for ${{ steps.get-date.outputs.NOW }}"
title: "util: gTLD autopull updates for ${{ steps.get-date.outputs.now }}"
body: "Public suffix list gTLD data updates from `tools/patchnewgtlds` for ${{ steps.get-date.outputs.now }}."
committer: "GitHub <[email protected]>"
Expand Down

0 comments on commit 24abe13

Please sign in to comment.