summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBing-Hua Wang <binghuawang@ami.com>2021-04-08 14:41:33 +0800
committerAlexander Amelkin <mocbuhtig@amelkin.msk.ru>2021-04-08 11:29:25 +0300
commit69cdef116aaeb79c977b0d18cfc38012f8233496 (patch)
tree587e6d63820532f13bd079bf8e6aad2d73d3b287
parent9a861894255df2f2f8682b619d2ecb1ccb5c8591 (diff)
downloadipmitool-69cdef116aaeb79c977b0d18cfc38012f8233496.tar.gz
ci: Update for GitHub Actions v2.274.2
set-env and add-path have been removed since GitHub Actions v2.274.2. [1] Switch to Environment Files instead. [2] [1] https://github.blog/changelog/2020-11-09-github-actions-removing-set-env-and-add-path-commands-on-november-16/ [2] https://docs.github.com/en/actions/reference/workflow-commands-for-github-actions#environment-files
-rw-r--r--.github/workflows/ci.yml4
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 7e3a600..55ff479 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -102,8 +102,8 @@ jobs:
libssl-devel `
dos2unix `
wget
- echo "::add-path::C:/tools/cygwin/bin"
- echo "::add-path::C:/tools/cygwin/usr/bin"
+ echo "C:/tools/cygwin/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
+ echo "C:/tools/cygwin/usr/bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
- uses: actions/checkout@v2
- name: convert line ends
# checkout action on Windows apparently converts line ends