Skip to content

Commit

Permalink
Use GITHUB_OUTPUT
Browse files Browse the repository at this point in the history
  • Loading branch information
David Robertson committed Oct 18, 2022
1 parent b4b0ae0 commit cc7121f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Expand Up @@ -40,7 +40,7 @@ runs:
# https://github.com/snok/install-poetry/blob/main/README.md#caching-the-poetry-installation
- name: Locate user site
id: site-user-base
run: echo "::set-output name=dir::$(python -m site --user-base)"
run: echo "dir=$(python -m site --user-base)" >> "$GITHUB_OUTPUT"
shell: bash

- name: Restore/cache poetry installation
Expand All @@ -59,7 +59,7 @@ runs:
# Again, we're following snok/install-poetry's README.
- name: Locate poetry venv
id: poetry-venvs
run: echo "::set-output name=dir::$(python -m poetry config virtualenvs.path)"
run: echo "dir=$(python -m poetry config virtualenvs.path)" >> "$GITHUB_OUTPUT"
shell: bash

- name: Restore/cache poetry venv
Expand Down

0 comments on commit cc7121f

Please sign in to comment.