From ef437f82437a793ab42dd076b9cba45755eac223 Mon Sep 17 00:00:00 2001 From: Brooke Sargent Date: Mon, 8 Apr 2024 10:53:47 -0400 Subject: [PATCH] chore: don't use ::set-output (#299) don't use ::set-output --- .github/workflows/integration-no-init-event.yaml | 2 +- .github/workflows/integration.yaml | 2 +- README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/integration-no-init-event.yaml b/.github/workflows/integration-no-init-event.yaml index 4415f75..a35cc74 100644 --- a/.github/workflows/integration-no-init-event.yaml +++ b/.github/workflows/integration-no-init-event.yaml @@ -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: ./ diff --git a/.github/workflows/integration.yaml b/.github/workflows/integration.yaml index 7095585..339a265 100644 --- a/.github/workflows/integration.yaml +++ b/.github/workflows/integration.yaml @@ -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: ./ diff --git a/README.md b/README.md index d30aabb..a855ec9 100644 --- a/README.md +++ b/README.md @@ -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.