Skip to content

Commit

Permalink
.github: fix legacy set-env problem
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinburke committed Jan 6, 2021
1 parent ee13bb1 commit 100e855
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ jobs:
test:
strategy:
matrix:
go-version: [1.13.x, 1.14.x]
go-version: [1.13.x, 1.14.x, 1.15.x]
platform: [ubuntu-latest]
runs-on: ${{ matrix.platform }}
steps:
Expand All @@ -16,8 +16,8 @@ jobs:
with:
path: './src/github.com/github-release/github-release'
# staticcheck needs this for GOPATH
- run: echo "::set-env name=GOPATH::$GITHUB_WORKSPACE"
- run: echo "::set-env name=PATH::$GITHUB_WORKSPACE/bin:$PATH"
- run: echo "GOPATH=$GITHUB_WORKSPACE" >> $GITHUB_ENV
- run: echo "PATH=$GITHUB_WORKSPACE/bin:$PATH" >> $GITHUB_ENV
- name: Run tests
run: make lint test
working-directory: './src/github.com/github-release/github-release'

0 comments on commit 100e855

Please sign in to comment.