Skip to content

Commit

Permalink
fix(repo): change github set output to env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
meeroslav committed Oct 15, 2022
1 parent 3a30689 commit 3209ff8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion .github/workflows/e2e-matrix.yml
Expand Up @@ -106,7 +106,8 @@ jobs:

- name: Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
shell: bash
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache yarn
uses: actions/cache@v3
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/e2e-windows.yml
Expand Up @@ -52,7 +52,8 @@ jobs:

- name: Yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
shell: bash
run: echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT

- name: Cache yarn
uses: actions/cache@v3
Expand Down

0 comments on commit 3209ff8

Please sign in to comment.