From c45d3e11ea3aebb0852dcb5166b98374ed99f73d Mon Sep 17 00:00:00 2001 From: reederc42 Date: Thu, 23 May 2024 10:53:36 -0700 Subject: [PATCH] Fixes GitHub actions vulnerability --- .github/workflows/github-actions.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/github-actions.yml b/.github/workflows/github-actions.yml index b86f5ecd7..822e4eb63 100644 --- a/.github/workflows/github-actions.yml +++ b/.github/workflows/github-actions.yml @@ -62,8 +62,10 @@ jobs: run: | go tool cover -html=${{ runner.os }}-coverage.out -o ${{ runner.os }}-coverage.html - name: Get run details + env: + PR_TITLE: ${{ github.event.pull_request.title }} run: | - echo "PR_Title=${{ github.event.pull_request.title }}" + echo "PR_Title=$PR_TITLE" echo "Run_Number=${{ github.run_number }}" echo "PR_Number=${{ github.event.pull_request.number }}" - if: runner.os != 'Windows'