From 9ca49aa4428d5dd4ad2aa96ae660b9bad4e1f330 Mon Sep 17 00:00:00 2001 From: "Deavon M. McCaffery" Date: Wed, 18 Nov 2020 12:44:58 +0000 Subject: [PATCH] build: replace add-path with environment files --- .github/actions/release-notes/entrypoint.sh | 5 +++-- .github/workflows/e2e.yml | 2 +- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/actions/release-notes/entrypoint.sh b/.github/actions/release-notes/entrypoint.sh index 7293197..55ee6d2 100644 --- a/.github/actions/release-notes/entrypoint.sh +++ b/.github/actions/release-notes/entrypoint.sh @@ -20,5 +20,6 @@ main() { } main -echo "::add-path::$BIN_DIR" -echo "::add-path::$RUNNER_WORKSPACE/$(basename $GITHUB_REPOSITORY)/bin" + +echo "$BIN_DIR" >> $GITHUB_PATH +echo "$RUNNER_WORKSPACE/$(basename $GITHUB_REPOSITORY)/bin" >> $GITHUB_PATH diff --git a/.github/workflows/e2e.yml b/.github/workflows/e2e.yml index 5bb6fe2..48d7673 100644 --- a/.github/workflows/e2e.yml +++ b/.github/workflows/e2e.yml @@ -18,7 +18,7 @@ jobs: - name: Checkout uses: actions/checkout@v2 - name: Setup Kubernetes - uses: engineerd/setup-kind@v0.4.0 + uses: engineerd/setup-kind@v0.5.0 - name: Build container image run: | GIT_COMMIT=$(git rev-list -1 HEAD) && \