diff options
| author | KOBAYASHI Shuji <[email protected]> | 2020-11-17 18:40:59 +0900 |
|---|---|---|
| committer | KOBAYASHI Shuji <[email protected]> | 2020-11-17 18:40:59 +0900 |
| commit | bed04414d7d394a74bdbbf3377afb5d246aa9fb8 (patch) | |
| tree | 0db9cc5cf9ef5bbb7d769d3a3e017f3781c033e9 /.github/workflows/build.yml | |
| parent | aae8237335accdede59a2ca7a2775ea11156884b (diff) | |
| download | mruby-bed04414d7d394a74bdbbf3377afb5d246aa9fb8.tar.gz mruby-bed04414d7d394a74bdbbf3377afb5d246aa9fb8.zip | |
Fix deprecated `set-env` command error on GitHub Actions [ci skip]
I tried `$GITHUB_PATH` and `$GITHUB_ENV` instead of `set-env`, but
for some reason path was not recognized, so I changed to using
`ACTIONS_ALLOW_UNSECURE_COMMANDS`.
Diffstat (limited to '.github/workflows/build.yml')
| -rw-r--r-- | .github/workflows/build.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 56fbe86c7..811a11cf5 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -67,6 +67,7 @@ jobs: runs-on: windows-latest env: MRUBY_CONFIG: travis + ACTIONS_ALLOW_UNSECURE_COMMANDS: true steps: - uses: actions/checkout@v1 - uses: actions/cache@v1 |
