]> granicus.if.org Git - vim/commitdiff
patch 8.2.1829: warnings when executing Github actions v8.2.1829
authorBram Moolenaar <Bram@vim.org>
Sat, 10 Oct 2020 20:34:36 +0000 (22:34 +0200)
committerBram Moolenaar <Bram@vim.org>
Sat, 10 Oct 2020 20:34:36 +0000 (22:34 +0200)
Problem:    Warnings when executing Github actions.
Solution:   Use another method to set environment variables. (Ken Takata,
            closes #7107)

.github/workflows/ci-windows.yaml
src/version.c

index 6a5501f249cbcc601488298728e24fb07f2e6048..917783019da029d512e865b092244a0c83bc11dd 100644 (file)
@@ -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'
index abec6fbc0ed62633b4bd4524ce3cf568afb3df64..388932fd5fdd63077598f7396b72be169a1a8ab0 100644 (file)
@@ -750,6 +750,8 @@ static char *(features[]) =
 
 static int included_patches[] =
 {   /* Add new patch number below this line */
+/**/
+    1829,
 /**/
     1828,
 /**/