Skip to content

Commit e6aab8d

Browse files
authored
Merge pull request #134 from justinsb/github_actions_set_env_deprecation
github actions tests: replace set-env with GITHUB_ENV
2 parents a0cf7b5 + 048681a commit e6aab8d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
stable: true
2020

2121
- run: |
22-
echo "::set-env name=GOPATH::${HOME}/go"
22+
echo "GOPATH=${HOME}/go" >> $GITHUB_ENV
2323
2424
- uses: actions/checkout@v2
2525

@@ -43,7 +43,7 @@ jobs:
4343
stable: true
4444

4545
- run: |
46-
echo "::set-env name=GOPATH::${HOME}/go"
46+
echo "GOPATH=${HOME}/go" >> $GITHUB_ENV
4747
4848
- uses: actions/checkout@v2
4949

0 commit comments

Comments
 (0)