Skip to content

Commit

Permalink
refactor: use github output files instead of set-output (#9)
Browse files Browse the repository at this point in the history
fixes: #8
  • Loading branch information
fubuloubu authored Feb 6, 2023
1 parent 6f46c16 commit 98088cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ runs:
- name: Set pip cache directory path
id: pip-cache-dir-path
run: |
echo "::set-output name=dir::$(pip cache dir)"
echo "dir=$(pip cache dir)" >> $GITHUB_OUTPUT
shell: bash

- name: Restore pip cache
Expand All @@ -64,7 +64,7 @@ runs:
- name: Find if requirements.txt if exists
id: find-requirements-txt
run: |
echo "::set-output name=file::$(ls requirements.txt)"
echo "file=$(ls requirements.txt)" >> $GITHUB_OUTPUT
shell: bash

- name: Install requirements.txt
Expand Down

0 comments on commit 98088cb

Please sign in to comment.