From 35e81c1eebb45e0e39e53970b51e36e30bcfa4c7 Mon Sep 17 00:00:00 2001 From: Oliver Hamlet Date: Thu, 19 Nov 2020 17:55:58 +0000 Subject: [PATCH] Replace disabled GitHub Actions commands --- .github/workflows/ci.yml | 4 ++-- .github/workflows/release.yml | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 2d951b64..a7efa8f3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -58,7 +58,7 @@ jobs: - name: Install cbindgen run: | cargo install cbindgen --version ${{ env.CBINDGEN_VERSION }} - echo "::add-path::~/.cargo/bin" + echo "~/.cargo/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append if: steps.cache-cbindgen.outputs.cache-hit != 'true' - name: Get descriptive libloot version @@ -89,7 +89,7 @@ jobs: - name: Install packages for building docs run: | nuget install doxygen -Version 1.8.14 - echo "::add-path::${{ github.workspace }}\Doxygen.1.8.14\tools" + echo "${{ github.workspace }}\Doxygen.1.8.14\tools" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append python -m pip install -r docs/requirements.txt - name: Build docs diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f001e814..734078be 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -74,7 +74,7 @@ jobs: - name: Install cbindgen run: | cargo install cbindgen --version ${{ env.CBINDGEN_VERSION }} - echo "::add-path::~/.cargo/bin" + echo "~/.cargo/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append if: steps.cache-cbindgen.outputs.cache-hit != 'true' - name: Get descriptive libloot version @@ -97,7 +97,7 @@ jobs: - name: Install packages for building docs run: | nuget install doxygen -Version 1.8.14 - echo "::add-path::${{ github.workspace }}\Doxygen.1.8.14\tools" + echo "${{ github.workspace }}\Doxygen.1.8.14\tools" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append python -m pip install -r docs/requirements.txt - name: Build docs