Skip to content

Commit

Permalink
[CI][NFC] Fix more github action warnings (#7090)
Browse files Browse the repository at this point in the history
Continuation of #7055

There will be more patches, e.g. it's appeared that download-artifact is
not
fixed yet: actions/download-artifact#185
  • Loading branch information
Pavel Chupin authored Oct 20, 2022
1 parent 321c733 commit 7a86aac
Showing 1 changed file with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/sycl_containers.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,10 @@ jobs:
id: deps
run: |
DEPS=`cat devops/dependencies.json`
DEPS="${DEPS//'%'/'%25'}"
DEPS="${DEPS//$'\n'/'%0A'}"
DEPS="${DEPS//$'\r'/'%0D'}"
DEPS="${DEPS//$'\r'/''}"
DEPS="${DEPS//$'\n'/' '}"
echo $DEPS
echo "::set-output name=deps::$DEPS"
echo "deps=$DEPS" >>$GITHUB_OUTPUT
- name: Build and Push Container
uses: ./devops/actions/build_container
with:
Expand Down Expand Up @@ -115,11 +114,10 @@ jobs:
id: deps
run: |
DEPS=`cat devops/dependencies.json`
DEPS="${DEPS//'%'/'%25'}"
DEPS="${DEPS//$'\n'/'%0A'}"
DEPS="${DEPS//$'\r'/'%0D'}"
DEPS="${DEPS//$'\r'/''}"
DEPS="${DEPS//$'\n'/' '}"
echo $DEPS
echo "::set-output name=deps::$DEPS"
echo "deps=$DEPS" >>$GITHUB_OUTPUT
- name: Build and Push Container
uses: ./devops/actions/build_container
with:
Expand Down

0 comments on commit 7a86aac

Please sign in to comment.