summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathias Preiner <mathias.preiner@gmail.com>2020-10-09 11:42:25 -0700
committerGitHub <noreply@github.com>2020-10-09 11:42:25 -0700
commit290272719d7a773ea681a420dea3632914f6809c (patch)
tree9e353b92ac01eebbb6c09ae6fb0576af03ad0ba2
parenta078e193eb13e398f663eff2d0b9a2ef145ca75f (diff)
Remove deprecated add-path commands and use $GITHUB_PATH instead. (#5232)
-rw-r--r--.github/workflows/ci.yml6
1 files changed, 3 insertions, 3 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index e9c217501..b8fefd401 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -72,7 +72,7 @@ jobs:
python3 -m pip install toml
python3 -m pip install setuptools
python3 -m pip install pexpect
- echo "::add-path::/usr/lib/ccache"
+ echo "/usr/lib/ccache" >> $GITHUB_PATH
# Note: macOS comes with a libedit; it does not need to brew-installed
- name: Install Packages (macOS)
@@ -88,14 +88,14 @@ jobs:
python3 -m pip install toml
python3 -m pip install setuptools
python3 -m pip install pexpect
- echo "::add-path::/usr/local/opt/ccache/libexec"
+ echo "/usr/local/opt/ccache/libexec" >> $GITHUB_PATH
- name: Install Cython
if: matrix.python-bindings && runner.os == 'Linux'
run: |
python3 -m pip install \
Cython==0.29.* --install-option="--no-cython-compile"
- echo "::add-path::$(python3 -m site --user-base)/bin"
+ echo "$(python3 -m site --user-base)/bin" >> $GITHUB_PATH
- name: Install Cython (macOS)
if: matrix.python-bindings && runner.os == 'macOS'
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback