Skip to content

Commit

Permalink
chore: don't use ::set-output (#299)
Browse files Browse the repository at this point in the history
don't use ::set-output
  • Loading branch information
brookesargent authored Apr 8, 2024
1 parent 753995e commit ef437f8
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/integration-no-init-event.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set trace-start
id: set-trace-start
run: |
echo ::set-output name=trace-start::$(date +%s)
echo "trace-start=$(date +%s)" >> $GITHUB_OUTPUT
- name: Buildevents
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Set trace-start
id: set-trace-start
run: |
echo ::set-output name=trace-start::$(date +%s)
echo "trace-start=$(date +%s)" >> $GITHUB_OUTPUT
- name: Buildevents
uses: ./
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ the-job-that-runs-first:
- name: Set trace-start
id: set-trace-start
run: |
echo ::set-output name=trace-start::$(date +%s)
echo "trace-start=$(date +%s)" >> $GITHUB_OUTPUT
- uses: honeycombio/gha-buildevents@v2
with:
# Required: a Honeycomb API key - needed to send traces.
Expand Down

0 comments on commit ef437f8

Please sign in to comment.