Skip to content

Commit

Permalink
Fix use of deprecated directive in CI flows (#1584)
Browse files Browse the repository at this point in the history
  • Loading branch information
mraerino authored Feb 13, 2023
1 parent 34cbbcb commit 8164fa5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,9 +24,9 @@ jobs:
id: datetime
run: |-
time=$(date --date "1970-01-01 $(date +%T)" +%s)
echo "::set-output name=timestamp::$(date --iso-8601=seconds)"
echo "::set-output name=date::$(date --utc +%Y.%m.%d)"
echo "::set-output name=time::${time}"
echo "timestamp=$(date --iso-8601=seconds)" >> $GITHUB_OUTPUT
echo "date=$(date --utc +%Y.%m.%d)" >> $GITHUB_OUTPUT
echo "time=${time}" >> $GITHUB_OUTPUT
build:
name: Build Netlify TrafficServer
needs: calendar
Expand Down
3 changes: 1 addition & 2 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,7 @@ jobs:
steps:
- name: Get Current Date
id: datetime
run: |-
echo "::set-output name=date::$(date +%s)"
run: echo "date=$(date +%s)" >> $GITHUB_OUTPUT
build:
name: Build TrafficServer
needs: calendar
Expand Down

0 comments on commit 8164fa5

Please sign in to comment.