diff options
author | Chris Packham <judge.packham@gmail.com> | 2020-11-10 20:58:47 +1300 |
---|---|---|
committer | Chris Packham <judge.packham@gmail.com> | 2020-11-10 21:10:31 +1300 |
commit | b0ca9b8ca7368fcdc7baad2cc6eafa9a0d89a3ec (patch) | |
tree | ec71336ef3e42d6f48fa194bde817ffcd97bd41c /.github | |
parent | a4231a555a3f897ecb32aad2069de4305ce0a969 (diff) | |
download | crosstool-ng-b0ca9b8ca7368fcdc7baad2cc6eafa9a0d89a3ec.tar.gz crosstool-ng-b0ca9b8ca7368fcdc7baad2cc6eafa9a0d89a3ec.tar.bz2 crosstool-ng-b0ca9b8ca7368fcdc7baad2cc6eafa9a0d89a3ec.zip |
CI: Replace add-path command
The add-path and set-env commands are being deprecated[1]. Replace the
one instance of add-path in the CI workflow with the recommended
alternative[2].
[1] - https://github.blog/changelog/2020-10-01-github-actions-deprecating-set-env-and-add-path-commands/
[2] - https://docs.github.com/en/free-pro-team@latest/actions/reference/workflow-commands-for-github-actions#adding-a-system-path
Signed-off-by: Chris Packham <judge.packham@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/continuous-integration-workflow.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/continuous-integration-workflow.yml b/.github/workflows/continuous-integration-workflow.yml index bc146f87..52e8fb55 100644 --- a/.github/workflows/continuous-integration-workflow.yml +++ b/.github/workflows/continuous-integration-workflow.yml @@ -67,7 +67,7 @@ jobs: - name: "prereq" run: | sudo apt-get install -y gperf help2man libtool-bin - echo "::add-path::$GITHUB_WORKSPACE/.local/bin" + echo "$GITHUB_WORKSPACE/.local/bin" >> $GITHUB_PATH - name: "build ${{ matrix.sample }}" run: | mkdir -p src |