From a25c5346ff40627865c2b68bdceba3be5609870e Mon Sep 17 00:00:00 2001 From: Albert Tugushev Date: Tue, 1 Dec 2020 23:41:58 +0700 Subject: [PATCH] Fix GitHub actions example Use set-output instead of set-env, since it is removed from GHA. --- index.mako | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/index.mako b/index.mako index 271f6472..40fd073e 100644 --- a/index.mako +++ b/index.mako @@ -1729,7 +1729,7 @@ immutable caches: ```yaml - name: set PY - run: echo "::set-env name=PY::$(python -VV | sha256sum | cut -d' ' -f1)" + run: echo "PY=$(python -VV | sha256sum | cut -d' ' -f1)" >> $GITHUB_ENV - uses: actions/cache@v1 with: path: ~/.cache/pre-commit