From 375a4daf280c58f55f4403b3f3b399b79369b653 Mon Sep 17 00:00:00 2001 From: Phil Estes Date: Tue, 12 Jan 2021 09:49:16 -0500 Subject: [PATCH] Remove use of deprecated GH Actions env/path sets Signed-off-by: Phil Estes --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6827393..c8dccaa 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -23,8 +23,8 @@ jobs: - name: Setup Go binary path shell: bash run: | - echo "::set-env name=GOPATH::${{ github.workspace }}" - echo "::add-path::${{ github.workspace }}/bin" + echo "GOPATH=${{ github.workspace }}" >> $GITHUB_ENV + echo "${{ github.workspace }}/bin" >> $GITHUB_PATH - name: Check out code uses: actions/checkout@v2