diff options
author | Bram Moolenaar <Bram@vim.org> | 2020-10-10 22:34:36 +0200 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2020-10-10 22:34:36 +0200 |
commit | bd6428b9e79ed85b54ea7eaa11871fa09d63ab6f (patch) | |
tree | 3a6c961f7ca609035f2d530754daaf2d386072cf /.github | |
parent | 1b1e9df78b9ff98cc5ccff359bead37ce5c54d6b (diff) | |
download | vim-git-bd6428b9e79ed85b54ea7eaa11871fa09d63ab6f.tar.gz |
patch 8.2.1829: warnings when executing Github actionsv8.2.1829
Problem: Warnings when executing Github actions.
Solution: Use another method to set environment variables. (Ken Takata,
closes #7107)
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/ci-windows.yaml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci-windows.yaml b/.github/workflows/ci-windows.yaml index 6a5501f24..917783019 100644 --- a/.github/workflows/ci-windows.yaml +++ b/.github/workflows/ci-windows.yaml @@ -74,8 +74,8 @@ jobs: git config --global core.autocrlf input python_dir=$(cat "/proc/${{ matrix.cygreg }}/HKEY_LOCAL_MACHINE/SOFTWARE/Python/PythonCore/${PYTHON_VER_DOT}/InstallPath/@") python3_dir=$(cat "/proc/${{ matrix.cygreg }}/HKEY_LOCAL_MACHINE/SOFTWARE/Python/PythonCore/${PYTHON3_VER_DOT}${{ matrix.pyreg }}/InstallPath/@") - echo "::set-env name=PYTHON_DIR::$python_dir" - echo "::set-env name=PYTHON3_DIR::$python3_dir" + echo "PYTHON_DIR=$python_dir" >> $GITHUB_ENV + echo "PYTHON3_DIR=$python3_dir" >> $GITHUB_ENV - uses: msys2/setup-msys2@v2 if: matrix.toolchain == 'mingw' |